Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
beac2f5a
提交
beac2f5a
authored
3月 16, 2023
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
2006 评奖评优管理头像上传限制优化
上级
6ec19ed3
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
61 行增加
和
11 行删除
+61
-11
ImgUploadCom.jsx
one_stop_public/libs/ImgUploadCom.jsx
+60
-10
index.jsx
one_stop_public/tableCompon/index.jsx
+1
-1
没有找到文件。
one_stop_public/libs/ImgUploadCom.jsx
浏览文件 @
beac2f5a
import
React
from
'react'
;
import
{
Upload
,
message
,
Badge
,
Icon
}
from
'antd'
;
import
{
Upload
,
message
,
Badge
,
Icon
,
Modal
}
from
'antd'
;
import
config
from
'@/webPublic/one_stop_public/config'
;
import
{
zipImage
}
from
'@/webPublic/zyd_public/utils/handlePhoto'
;
import
{
getToken
}
from
'@/webPublic/one_stop_public/utils/token'
;
...
...
@@ -57,16 +57,38 @@ export default class ImgUploadCom extends React.Component {
this
.
triggerChange
(
''
);
};
getImageWidthAndHeight
=
(
file
)
=>
{
// 解决禅道任务 2006 评奖评优管理头像上传限制优化
return
new
Promise
((
resolve
,
reject
)
=>
{
let
_URL
=
window
.
URL
||
window
.
webkitURL
;
let
image
=
new
Image
();
image
.
src
=
_URL
.
createObjectURL
(
file
);
image
.
onload
=
function
()
{
resolve
({
width
:
image
.
width
,
height
:
image
.
height
,
});
};
});
}
giveMessage
=
()
=>
{
const
{
otherProps
=
{}
}
=
this
.
props
;
Modal
.
warning
({
title
:
'图片限制'
,
content
:
otherProps
.
limitMessage
||
'图片格式错误!'
,
okText
:
'确定'
,
});
}
render
()
{
const
{
json
,
disabled
}
=
this
.
props
;
const
{
json
,
disabled
,
otherProps
}
=
this
.
props
;
const
{
url
}
=
this
.
state
;
return
(
<
Upload
.
Dragger
disabled=
{
disabled
}
accept=
{
'image/*'
}
accept=
{
otherProps
.
accept
||
'image/*'
}
url=
{
url
}
headers=
{
{
Authorization
:
`bearer ${getToken()}`
,
...
...
@@ -75,6 +97,34 @@ export default class ImgUploadCom extends React.Component {
token
:
getToken
(),
}
}
beforeUpload=
{
(
file
)
=>
{
if
(
otherProps
){
if
(
otherProps
.
limitFileType
&&
Array
.
isArray
(
otherProps
.
limitFileType
)){
// 限制文件类型
let
fileType
=
file
.
name
.
split
(
'.'
).
pop
();
if
(
!
otherProps
.
limitFileType
.
includes
(
fileType
)){
this
.
giveMessage
();
return
false
;
}
}
if
(
otherProps
.
limitWidth
||
otherProps
.
limitHeight
){
//限制上传图片的宽高. 解决禅道任务 2006
return
new
Promise
((
resolve
,
reject
)
=>
{
this
.
getImageWidthAndHeight
(
file
).
then
((
res
)
=>
{
if
(
otherProps
.
limitWidth
&&
res
.
width
!==
otherProps
.
limitWidth
){
this
.
giveMessage
();
reject
(
false
);
return
false
;
}
if
(
otherProps
.
limitHeight
&&
res
.
height
!==
otherProps
.
limitHeight
){
this
.
giveMessage
();
reject
(
false
);
return
false
;
}
return
resolve
(
zipImage
(
file
,
4
));
});
});
}
}
return
zipImage
(
file
,
4
);
// 图片压缩函数. 超过fileSizeLimitMb兆的图片 直接压缩成原来的 30% 如果后续有其他需求考虑 做成全局配置项 配置可以压缩的图片的范围
// 禅道bug 23185
...
...
@@ -86,10 +136,10 @@ export default class ImgUploadCom extends React.Component {
multiple=
{
false
}
style=
{
{
padding
:
0
}
}
>
{
url
?
(
<
Badge
count=
{
<
Icon
type=
"close-circle"
style=
{
{
color
:
'red'
}
}
onClick=
{
this
.
removePicture
}
/>
}
>
<
Badge
count=
{
<
Icon
type=
"close-circle"
style=
{
{
color
:
'red'
}
}
onClick=
{
this
.
removePicture
}
/>
}
>
<
img
src=
{
queryFileUrl
(
url
)
}
style=
{
{
...
...
one_stop_public/tableCompon/index.jsx
浏览文件 @
beac2f5a
...
...
@@ -3892,7 +3892,7 @@ ${obj[dataColumn.base52]}
message
:
'请上传图片'
,
},
],
})(<
ImgUploadCom
json=
{
json
}
disabled=
{
disabled
}
/>);
})(<
ImgUploadCom
json=
{
json
}
disabled=
{
disabled
}
otherProps=
{
this
.
otherProps
}
/>);
if
(
get
===
'mobile'
&&
((
json
.
isMobileLabel
!=
null
&&
json
.
isMobileLabel
)
||
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论