Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
66bbcd8f
提交
66bbcd8f
authored
9月 10, 2024
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
一站式1.0
增加图片裁剪移动端组件 解决延职 学生更新头像
上级
058a8802
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
134 行增加
和
51 行删除
+134
-51
ImgUploadCom.jsx
one_stop_public/libs/ImgUploadCom.jsx
+22
-6
importAll.js
one_stop_public/libs/Split/PhotoClip/importAll.js
+7
-4
index.js
one_stop_public/libs/Split/PhotoClip/index.js
+96
-37
index.less
one_stop_public/libs/Split/PhotoClip/index.less
+6
-2
uploadFile.js
zyd_public/WangEditor/uploadFile.js
+3
-2
没有找到文件。
one_stop_public/libs/ImgUploadCom.jsx
浏览文件 @
66bbcd8f
...
...
@@ -10,6 +10,17 @@ import {
}
from
'@/webPublic/one_stop_public/2023yunshangguizhou/utils'
;
import
PhotoClip
from
'./Split/PhotoClip/index'
;
/**
* otherProps: {
* limitMessage: '请上传xx格式图片图片', // 图片格式限制提示语句
* photoClip: true, // 是否开启图片裁剪功能. 开启后需要引入对应的依赖js
* accept: 'image/png, image/jpeg', // 图片格式限制
* limitFileType: ['jpg', 'jpeg', 'png'], // 图片格式限制(上传时)
* limitWidth: 1024, // 图片宽度限制 如果设置了 上传的图片必须和此宽度限制一致
* limitHeight: 768, // 图片高度限制 如果设置了 上传的图片必须和此高度限制一致
* }
* */
export
default
class
ImgUploadCom
extends
React
.
Component
{
constructor
(
props
)
{
super
(
props
);
...
...
@@ -87,13 +98,18 @@ export default class ImgUploadCom extends React.Component {
render
()
{
const
{
json
,
disabled
,
otherProps
}
=
this
.
props
;
console
.
log
(
otherProps
);
const
{
json
,
disabled
,
otherProps
,
value
}
=
this
.
props
;
const
{
url
}
=
this
.
state
;
// TODO 图片裁剪功能 如果开启了 直接更换为 裁剪组件 钟是志 2024年9月9日
// {
// otherProps.photoClip && <PhotoClip />
// }
console
.
log
(
'🚀 ~ file:ImgUploadCom method:render line:103 -----'
,
otherProps
,
''
);
if
(
!
disabled
&&
otherProps
.
photoClip
){
return
(
<
PhotoClip
json=
{
json
}
value=
{
value
}
triggerChange=
{
this
.
triggerChange
}
otherProps=
{
otherProps
}
/>
);
}
return
(
<>
<
Upload
.
Dragger
...
...
one_stop_public/libs/Split/PhotoClip/importAll.js
浏览文件 @
66bbcd8f
...
...
@@ -15,9 +15,12 @@ function loadJs(src) {
});
}
export
default
async
function
importDependence
()
{
await
loadJs
(
'/config/dependence/iscroll-zoom-min.js'
);
await
loadJs
(
'/config/dependence/hammer.min.js'
);
await
loadJs
(
'/config/dependence/lrz.all.bundle.js'
);
await
loadJs
(
'/config/dependence/PhotoClip.js'
);
const
a
=
await
loadJs
(
'/config/dependence/iscroll-zoom-min.js'
);
const
b
=
await
loadJs
(
'/config/dependence/hammer.min.js'
);
const
c
=
await
loadJs
(
'/config/dependence/lrz.all.bundle.js'
);
const
d
=
await
loadJs
(
'/config/dependence/PhotoClip.js'
);
if
(
a
&&
b
&&
c
&&
d
)
{
return
new
Promise
((
resolve
,
reject
)
=>
resolve
(
true
));
}
return
new
Promise
((
resolve
,
reject
)
=>
resolve
(
false
));
}
one_stop_public/libs/Split/PhotoClip/index.js
浏览文件 @
66bbcd8f
import
React
,
{
useState
,
useEffect
,
Fragment
}
from
'react'
;
import
styles
from
'./index.less'
;
import
{
Button
,
WingBlank
,
WhiteSpace
,
Toast
,
}
from
'antd-mobile'
;
import
importDependence
from
'@/webPublic/one_stop_public/libs/Split/PhotoClip/importAll'
;
// import { uploadFile, updatePhoto2 } from '../../../services/InformationSvc';
import
{
Button
,
WingBlank
,
WhiteSpace
,
Toast
}
from
'antd-mobile'
;
import
importAll
from
'./importAll'
;
import
{
Modal
}
from
'antd'
;
import
{
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
uploadFile
}
from
'@/webPublic/one_stop_public/libs/PictureSignature/ShowItem'
;
let
pc
=
null
;
const
dataURLtoFile
=
(
dataurl
,
filename
)
=>
{
...
...
@@ -24,17 +21,46 @@ const dataURLtoFile = (dataurl, filename) => {
return
new
File
([
u8arr
],
filename
,
{
type
:
mime
});
};
export
default
function
Index
({})
{
export
default
function
Index
({
value
,
otherProps
,
json
,
triggerChange
})
{
const
[
imgData
,
setData
]
=
useState
(
null
);
const
[
visible
,
setVisible
]
=
useState
(
false
);
useEffect
(()
=>
{
importDependence
().
then
((
res
)
=>
{
if
(
!
window
.
PhotoClip
)
{
importAll
();
}
// 加载的图片必须要与本程序同源,否则无法截图
// pc.load('img/mm.jpg');
},
[]);
function
uploadImg
()
{
if
(
!
imgData
)
{
Toast
.
info
(
'请先上传图片,并拖动截取'
,
2
);
return
false
;
}
let
file
=
dataURLtoFile
(
imgData
,
'1.jpg'
);
// 将base64 图片转换成 file
console
.
log
(
file
);
Toast
.
loading
(
'正在上传'
,
2
);
uploadFile
(
file
).
then
((
y
)
=>
{
if
(
y
&&
typeof
y
===
'string'
&&
y
.
length
>
10
){
triggerChange
(
y
);
closeModal
();
}
});
}
useEffect
(()
=>
{
if
(
visible
)
{
if
(
window
.
PhotoClip
&&
!
pc
)
{
pc
=
new
window
.
PhotoClip
(
'#clipArea'
,
{
size
:
[
200
,
280
],
outputSize
:
[
200
,
280
],
//adaptive: ['60%', '80%'],
file
:
'#file'
,
view
:
'#view'
,
ok
:
'#clipBtn'
,
//img: 'img/mm.jpg',
loadStart
:
function
()
{
console
.
log
(
'开始读取照片'
);
},
...
...
@@ -48,34 +74,64 @@ export default function Index({}) {
alert
(
msg
);
},
});
})
},
[]);
}
}
},
[
visible
]);
function
uploadImg
()
{
if
(
!
imgData
)
{
Toast
.
info
(
'请先上传图片,并拖动截取'
,
2
);
return
false
;
function
handleAClick
()
{
// setData(null);
setVisible
(
true
);
// pc && pc.destroy();
// pc = null;
}
// let file = dataURLtoFile(imgData, '1'); // 将base64 图片转换成 file
// console.log(file);
// Toast.loading('正在上传', 2);
// uploadFile({ file }).then((y) => {
// if (y && y.url) {
// updatePhoto2({ photo2: y.url }).then((response) => {
// if (response) {
// Toast.info('修改头像成功', 2);
// window.history.back(-1);
// }
// });
// }
// });
function
closeModal
()
{
setVisible
(
false
);
}
return
(
<
Fragment
>
<
a
className
=
{
styles
.
handle
}
onClick
=
{
handleAClick
}
>
{
!!
value
?
<
img
src
=
{
queryFileUrl
(
value
)}
/> : '点击上传'
}
<
/a
>
{
<
Modal
visible
=
{
visible
}
width
=
{
'95vw'
}
forceRender
=
{
true
}
onCancel
=
{()
=>
{
closeModal
();
}}
style
=
{{
top
:
20
}}
destroyOnClose
=
{
false
}
footer
=
{
null
}
bodyStyle
=
{{
minHeight
:
'60vh'
,
maxHeight
:
'90vh'
,
overflowY
:
'auto'
,
}}
>
<
div
className
=
{
styles
.
photo
}
>
<
div
id
=
'clipArea'
style
=
{{
height
:
'300px'
}}
/
>
<
div
className
=
{
styles
.
photo2
}
>
<
label
htmlFor
=
'file'
className
=
{
styles
.
labelDom
}
>
<
input
type
=
'button'
id
=
'btn'
value
=
'点我上传'
className
=
{
styles
.
btn
}
/
>
<
span
id
=
'text'
className
=
{
styles
.
text
}
>
{
otherProps
.
limitMessage
||
''
}
<
/span
>
<
input
type
=
'file'
id
=
'file'
className
=
{
styles
.
file
}
accept
=
{
'image/*'
}
/
>
<
/label
>
<
Button
type
=
'primary'
inline
...
...
@@ -86,11 +142,6 @@ export default function Index({}) {
截取
<
/Button
>
<
/div
>
<
p
style
=
{{
color
:
'red'
,
padding
:
'20px'
}}
>
提示
:
<
br
/>
证件照上传要求:免冠正面照片,照片上正常应该看到人的两耳轮廓,照片尺寸可以为一寸或二寸,颜色可以为黑白或彩色。底色可为白色或蓝色
.
<
/p
>
<
div
id
=
'view'
style
=
{{
...
...
@@ -100,13 +151,21 @@ export default function Index({}) {
backgroundColor
:
'#666'
,
}}
/
>
<
WingBlank
style
=
{{
marginTop
:
'20px'
,
marginBottom
:
'20px'
}}
>
<
Button
type
=
'warning'
onClick
=
{
uploadImg
}
>
上传
<
WingBlank
style
=
{{
marginTop
:
'20px'
,
}}
>
<
Button
type
=
'primary'
onClick
=
{
uploadImg
}
>
保存
<
/Button
>
<
WhiteSpace
/>
<
/WingBlank
>
<
WingBlank
style
=
{{
marginBottom
:
'20px'
}}
>
<
Button
type
=
'warning'
onClick
=
{
closeModal
}
>
关闭
<
/Button
>
<
WhiteSpace
/>
<
/WingBlank
>
<
/div
>
<
/Modal
>
}
<
/Fragment
>
);
}
one_stop_public/libs/Split/PhotoClip/index.less
浏览文件 @
66bbcd8f
.photo{
background-color: #FFFFFF;
width: 100
vw
;
width: 100
%
;
height: 100vh;
overflow-y: auto;
.uploadDiv{
...
...
@@ -10,7 +10,7 @@
.photo2{
display: flex;
flex-wrap: nowrap;
margin:
2
0px;
margin:
1
0px;
justify-content: space-evenly;
}
...
...
@@ -36,3 +36,7 @@
align-items: center;
margin-top: 10px;
}
.handle{
text-align: center;
}
zyd_public/WangEditor/uploadFile.js
浏览文件 @
66bbcd8f
import
request
from
'@/utils/request'
;
import
config
,
{
getUploadUrl
}
from
'@/config/config'
;
// import config, { getUploadUrl } from '@/config/config'; // 从学工配置文件获取上传地址
import
{
getToken
}
from
'@/utils/authority'
;
import
{
getSassApiHeader
,
getSysCode
}
from
'@/webPublic/one_stop_public/2023yunshangguizhou/utils'
;
import
{
getIsBei_Dian
}
from
'@/webPublic/zyd_public/utils/utils'
;
const
uploadUrl
=
getUploadUrl
()
;
export
const
uploadUrl
=
window
.
specialImportantSystemConfig
?.
uploadUrl
||
''
;
export
default
function
uploadFile
(
params
)
{
return
request
(
uploadUrl
,
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论