Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
266b0e52
提交
266b0e52
authored
12月 14, 2021
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
23524 签约审核--已处理--详情,,打印调整
上级
3dfd78b5
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
37 行增加
和
22 行删除
+37
-22
UploadCom.js
one_stop_public/libs/UploadCom.js
+23
-22
style.less
one_stop_public/libs/style.less
+14
-0
没有找到文件。
one_stop_public/libs/UploadCom.js
浏览文件 @
266b0e52
import
React
from
'react'
;
import
React
from
'react'
;
import
{
Button
,
Icon
,
message
,
Modal
,
Upload
}
from
'antd'
;
import
{
Button
,
Icon
,
message
,
Modal
,
Upload
}
from
'antd'
;
import
{
queryApiActionPath
}
from
'../utils/queryConfig'
;
import
{
queryApiActionPath
}
from
'../utils/queryConfig'
;
import
config
from
'@/webPublic/one_stop_public/config'
;
import
config
from
'@/webPublic/one_stop_public/config'
;
import
styles
from
'./style.less'
;
import
styles
from
'./style.less'
;
import
UploadComDiyForQnZy
from
'@/webPublic/one_stop_public/libs/UploadComDiyForQnZy'
;
import
UploadComDiyForQnZy
from
'@/webPublic/one_stop_public/libs/UploadComDiyForQnZy'
;
...
@@ -40,7 +40,8 @@ class UploadCom extends React.Component {
...
@@ -40,7 +40,8 @@ class UploadCom extends React.Component {
try
{
try
{
this
.
otherProps
=
new
Function
(
this
.
otherProps
)();
this
.
otherProps
=
new
Function
(
this
.
otherProps
)();
console
.
log
(
this
.
otherProps
);
console
.
log
(
this
.
otherProps
);
}
catch
(
e
)
{}
}
catch
(
e
)
{
}
}
}
}
}
...
@@ -62,12 +63,12 @@ class UploadCom extends React.Component {
...
@@ -62,12 +63,12 @@ class UploadCom extends React.Component {
//检测尺寸
//检测尺寸
isSize
=
file
=>
{
isSize
=
file
=>
{
const
{
limitWarnningMessage
}
=
this
.
otherProps
;
const
{
limitWarnningMessage
}
=
this
.
otherProps
;
return
new
Promise
((
resolve
,
reject
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
let
{
width
,
height
}
=
this
.
otherProps
.
limitImageSize
;
let
{
width
,
height
}
=
this
.
otherProps
.
limitImageSize
;
let
_URL
=
window
.
URL
||
window
.
webkitURL
;
let
_URL
=
window
.
URL
||
window
.
webkitURL
;
let
img
=
new
Image
();
let
img
=
new
Image
();
img
.
onload
=
function
()
{
img
.
onload
=
function
()
{
let
valid
=
img
.
width
>=
width
&&
img
.
height
>=
height
;
let
valid
=
img
.
width
>=
width
&&
img
.
height
>=
height
;
valid
?
resolve
()
:
reject
();
valid
?
resolve
()
:
reject
();
};
};
...
@@ -97,11 +98,11 @@ class UploadCom extends React.Component {
...
@@ -97,11 +98,11 @@ class UploadCom extends React.Component {
if
(
info
.
file
.
status
===
'done'
)
{
if
(
info
.
file
.
status
===
'done'
)
{
message
.
success
(
`
${
info
.
file
.
name
}
上传成功`
);
message
.
success
(
`
${
info
.
file
.
name
}
上传成功`
);
const
files
=
this
.
state
.
files
;
const
files
=
this
.
state
.
files
;
files
.
push
({
path
:
info
.
file
.
response
,
name
:
info
.
file
.
name
});
files
.
push
({
path
:
info
.
file
.
response
,
name
:
info
.
file
.
name
});
if
(
!
(
'value'
in
this
.
props
))
{
if
(
!
(
'value'
in
this
.
props
))
{
this
.
setState
({
files
});
this
.
setState
({
files
});
}
}
this
.
triggerChange
({
files
});
this
.
triggerChange
({
files
});
}
else
if
(
info
.
file
.
status
===
'error'
)
{
}
else
if
(
info
.
file
.
status
===
'error'
)
{
message
.
error
(
`
${
info
.
file
.
name
}
上传失败`
);
message
.
error
(
`
${
info
.
file
.
name
}
上传失败`
);
}
}
...
@@ -115,14 +116,14 @@ class UploadCom extends React.Component {
...
@@ -115,14 +116,14 @@ class UploadCom extends React.Component {
}
}
}
}
if
(
!
(
'value'
in
this
.
props
))
{
if
(
!
(
'value'
in
this
.
props
))
{
this
.
setState
({
files
});
this
.
setState
({
files
});
}
}
this
.
triggerChange
({
files
});
this
.
triggerChange
({
files
});
};
};
render
()
{
render
()
{
const
{
files
,
previewVisible
,
previewImage
}
=
this
.
state
;
const
{
files
,
previewVisible
,
previewImage
}
=
this
.
state
;
const
{
isMultiple
,
accept
,
btnName
,
disabled
}
=
this
.
props
;
const
{
isMultiple
,
accept
,
btnName
,
disabled
}
=
this
.
props
;
const
props
=
{
const
props
=
{
name
:
'file'
,
name
:
'file'
,
multiple
:
isMultiple
,
multiple
:
isMultiple
,
...
@@ -139,19 +140,19 @@ class UploadCom extends React.Component {
...
@@ -139,19 +140,19 @@ class UploadCom extends React.Component {
<
Upload
{...
props
}
disabled
=
{
disabled
}
>
<
Upload
{...
props
}
disabled
=
{
disabled
}
>
{
!
disabled
&&
(
{
!
disabled
&&
(
<
Button
>
<
Button
>
<
Icon
type
=
"upload"
/>
<
Icon
type
=
"upload"
/>
{
btnName
?
btnName
:
'上传附件'
}
{
btnName
?
btnName
:
'上传附件'
}
<
/Button
>
<
/Button
>
)}
)}
<
/Upload
>
<
/Upload
>
<
ul
style
=
{{
paddingLeft
:
8
,
display
:
'flex'
}
}
>
<
ul
className
=
{
styles
.
ulImageList
}
>
{(
files
||
[]).
map
(
f
=>
{
{(
Array
.
isArray
(
files
)
&&
files
||
[]).
map
(
f
=>
{
if
(
f
.
path
&&
checkIsImage
(
f
.
path
))
{
if
(
f
.
path
&&
checkIsImage
(
f
.
path
))
{
return
(
return
(
<
li
key
=
{
f
.
path
}
className
=
{
styles
.
preview_img
}
>
<
li
key
=
{
f
.
path
}
className
=
{
styles
.
preview_img
}
>
<
div
className
=
{
styles
.
preview_div
}
>
<
div
className
=
{
styles
.
preview_div
}
>
<
img
<
img
style
=
{{
width
:
'100px'
,
height
:
'auto'
}}
style
=
{{
width
:
'100px'
,
height
:
'auto'
}}
className
=
{
styles
.
img
}
className
=
{
styles
.
img
}
src
=
{
queryApiActionPath
()
+
f
.
path
}
src
=
{
queryApiActionPath
()
+
f
.
path
}
/
>
/
>
...
@@ -165,12 +166,12 @@ class UploadCom extends React.Component {
...
@@ -165,12 +166,12 @@ class UploadCom extends React.Component {
});
});
}}
}}
>
>
<
Icon
type
=
"eye"
className
=
{
styles
.
icon_eye
}
/
>
<
Icon
type
=
"eye"
className
=
{
styles
.
icon_eye
}
/
>
<
/div
>
<
/div
>
<
/div
>
<
/div
>
{
!
disabled
&&
(
{
!
disabled
&&
(
<
Icon
<
Icon
style
=
{{
marginLeft
:
10
}}
style
=
{{
marginLeft
:
10
}}
type
=
"delete"
type
=
"delete"
onClick
=
{
this
.
remove
.
bind
(
this
,
f
.
path
)}
onClick
=
{
this
.
remove
.
bind
(
this
,
f
.
path
)}
/
>
/
>
...
@@ -185,7 +186,7 @@ class UploadCom extends React.Component {
...
@@ -185,7 +186,7 @@ class UploadCom extends React.Component {
<
/a>{' '
}
<
/a>{' '
}
{
!
disabled
&&
(
{
!
disabled
&&
(
<
Icon
<
Icon
style
=
{{
marginLeft
:
10
}}
style
=
{{
marginLeft
:
10
}}
type
=
"delete"
type
=
"delete"
onClick
=
{
this
.
remove
.
bind
(
this
,
f
.
path
)}
onClick
=
{
this
.
remove
.
bind
(
this
,
f
.
path
)}
/
>
/
>
...
@@ -197,10 +198,10 @@ class UploadCom extends React.Component {
...
@@ -197,10 +198,10 @@ class UploadCom extends React.Component {
<
Modal
<
Modal
visible
=
{
previewVisible
}
visible
=
{
previewVisible
}
footer
=
{
null
}
footer
=
{
null
}
onCancel
=
{()
=>
this
.
setState
({
previewVisible
:
false
})}
onCancel
=
{()
=>
this
.
setState
({
previewVisible
:
false
})}
width
=
{
'90vw'
}
width
=
{
'90vw'
}
>
>
<
img
alt
=
"example"
style
=
{{
width
:
'100%'
,
height
:
'auto'
}}
src
=
{
previewImage
}
/
>
<
img
alt
=
"example"
style
=
{{
width
:
'100%'
,
height
:
'auto'
}}
src
=
{
previewImage
}
/
>
<
/Modal
>
<
/Modal
>
<
/div
>
<
/div
>
);
);
...
...
one_stop_public/libs/style.less
浏览文件 @
266b0e52
...
@@ -267,3 +267,17 @@
...
@@ -267,3 +267,17 @@
}
}
}
}
}
}
.ulImageList{
display: grid;
grid-row: auto;
grid-template-columns: repeat(auto-fill, 130px);
grid-auto-flow: column;
justify-items: start;
align-items: center;
column-gap: 10px;
.borderLi{
border: 1px solid gray;
display: grid;
padding: 5px;
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论