Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
9985ceb7
提交
9985ceb7
authored
10月 28, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
30470 录取通知书模板设置功能优化
图片上传组件增加删除功能
上级
df0f3413
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
44 行增加
和
21 行删除
+44
-21
ImgUploadCom.jsx
one_stop_public/libs/ImgUploadCom.jsx
+44
-21
没有找到文件。
one_stop_public/libs/ImgUploadCom.jsx
浏览文件 @
9985ceb7
import
React
from
'react'
;
import
React
from
'react'
;
import
{
Upload
,
message
}
from
'antd'
;
import
{
Upload
,
message
,
Badge
,
Icon
}
from
'antd'
;
import
config
from
'@/webPublic/one_stop_public/config'
;
import
config
from
'@/webPublic/one_stop_public/config'
;
import
{
zipImage
}
from
"@/webPublic/zyd_public/utils/handlePhoto"
;
import
{
zipImage
}
from
'@/webPublic/zyd_public/utils/handlePhoto'
;
import
{
getToken
}
from
'@/webPublic/one_stop_public/utils/token'
;
import
{
getToken
}
from
'@/webPublic/one_stop_public/utils/token'
;
import
{
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
queryFileUrl
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
...
@@ -14,7 +14,7 @@ export default class ImgUploadCom extends React.Component {
...
@@ -14,7 +14,7 @@ export default class ImgUploadCom extends React.Component {
};
};
}
}
triggerChange
=
changedValue
=>
{
triggerChange
=
(
changedValue
)
=>
{
// Should provide an event to pass value to Form.
// Should provide an event to pass value to Form.
const
onChange
=
this
.
props
.
onChange
;
const
onChange
=
this
.
props
.
onChange
;
if
(
onChange
)
{
if
(
onChange
)
{
...
@@ -26,7 +26,7 @@ export default class ImgUploadCom extends React.Component {
...
@@ -26,7 +26,7 @@ export default class ImgUploadCom extends React.Component {
// Should be a controlled component.
// Should be a controlled component.
if
(
'value'
in
nextProps
)
{
if
(
'value'
in
nextProps
)
{
const
value
=
nextProps
.
value
;
const
value
=
nextProps
.
value
;
this
.
setState
({
url
:
value
});
this
.
setState
({
url
:
value
});
}
}
}
}
...
@@ -35,23 +35,34 @@ export default class ImgUploadCom extends React.Component {
...
@@ -35,23 +35,34 @@ export default class ImgUploadCom extends React.Component {
message
.
success
(
`图片上传成功`
);
message
.
success
(
`图片上传成功`
);
if
(
!
(
'value'
in
this
.
props
))
{
if
(
!
(
'value'
in
this
.
props
))
{
this
.
setState
({
url
:
info
.
file
.
response
});
this
.
setState
({
url
:
info
.
file
.
response
});
}
}
this
.
triggerChange
(
info
.
file
.
response
);
this
.
triggerChange
(
info
.
file
.
response
);
}
else
if
(
info
.
file
.
status
===
'error'
)
{
}
else
if
(
info
.
file
.
status
===
'error'
)
{
message
.
error
(
`图片上传失败`
);
message
.
error
(
`图片上传失败`
);
}
}
};
};
changePos
=
obj
=>
{
changePos
=
(
obj
)
=>
{
if
(
!
(
'value'
in
this
.
props
))
{
if
(
!
(
'value'
in
this
.
props
))
{
this
.
setState
({
...
obj
});
this
.
setState
({
...
obj
});
}
}
this
.
triggerChange
({...
obj
});
this
.
triggerChange
({
...
obj
});
};
removePicture
=
(
e
)
=>
{
if
(
e
&&
e
.
stopPropagation
)
{
e
.
stopPropagation
();
e
.
preventDefault
();
}
this
.
triggerChange
(
''
);
};
};
render
()
{
render
()
{
const
{
json
,
disabled
}
=
this
.
props
;
const
{
const
{
url
}
=
this
.
state
;
json
,
disabled
}
=
this
.
props
;
const
{
url
}
=
this
.
state
;
return
(
return
(
<
Upload
.
Dragger
<
Upload
.
Dragger
disabled=
{
disabled
}
disabled=
{
disabled
}
...
@@ -64,25 +75,37 @@ export default class ImgUploadCom extends React.Component {
...
@@ -64,25 +75,37 @@ export default class ImgUploadCom extends React.Component {
token
:
getToken
(),
token
:
getToken
(),
}
}
}
}
beforeUpload=
{
(
file
)
=>
{
beforeUpload=
{
(
file
)
=>
{
return
zipImage
(
file
,
4
);
return
zipImage
(
file
,
4
);
// 图片压缩函数. 超过fileSizeLimitMb兆的图片 直接压缩成原来的 30% 如果后续有其他需求考虑 做成全局配置项 配置可以压缩的图片的范围
// 图片压缩函数. 超过fileSizeLimitMb兆的图片 直接压缩成原来的 30% 如果后续有其他需求考虑 做成全局配置项 配置可以压缩的图片的范围
// 禅道bug 23185
// 禅道bug 23185
}
}
}
}
showUploadList=
{
false
}
showUploadList=
{
false
}
name=
"file"
name=
"file"
action=
{
config
.
uploadUrl
}
action=
{
config
.
uploadUrl
}
onChange=
{
this
.
changeUrl
}
onChange=
{
this
.
changeUrl
}
multiple=
{
false
}
multiple=
{
false
}
style=
{
{
padding
:
0
}
}
style=
{
{
padding
:
0
}
}
>
>
{
url
?
(
{
url
?
(
<
img
src=
{
queryFileUrl
(
url
)
}
style=
{
{
<
Badge
count=
{
<
Icon
type=
"close-circle"
height
:
json
.
height
,
style=
{
{
color
:
'red'
}
}
width
:
json
.
width
,
onClick=
{
this
.
removePicture
}
maxWidth
:
'60vw'
,
// 解决图片在移动端过宽的bug
/>
}
>
}
}
/>
<
img
src=
{
queryFileUrl
(
url
)
}
style=
{
{
height
:
json
.
height
,
width
:
json
.
width
,
maxWidth
:
'60vw'
,
// 解决图片在移动端过宽的bug
}
}
/>
</
Badge
>
)
:
(
)
:
(
<
div
style=
{
{
height
:
json
.
height
,
width
:
json
.
width
}
}
/>
<
div
style=
{
{
height
:
json
.
height
,
width
:
json
.
width
,
}
}
/>
)
}
)
}
</
Upload
.
Dragger
>
</
Upload
.
Dragger
>
);
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论