Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
e03d4b19
提交
e03d4b19
authored
8月 02, 2024
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加批量上传压缩包的功能
上级
0f8bd140
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
103 行增加
和
1 行删除
+103
-1
FormListButtons.js
one_stop_public/libs/formList/FormListButtons.js
+2
-0
UploadZipCom.js
one_stop_public/libs/formList/UploadZipCom.js
+92
-0
index.js
one_stop_public/libs/formList/index.js
+9
-1
没有找到文件。
one_stop_public/libs/formList/FormListButtons.js
浏览文件 @
e03d4b19
...
...
@@ -55,6 +55,8 @@ export function FormListButtons(props) {
return
null
;
}
console
.
log
(
ConcatButtons
);
return
ConcatButtons
.
map
((
r
,
i
)
=>
{
if
(
r
.
ButtonType
===
'Normal'
)
{
const
propsR
=
{
...
r
};
...
...
one_stop_public/libs/formList/UploadZipCom.js
0 → 100644
浏览文件 @
e03d4b19
//@ts-nocheck
import
React
,
{
Component
}
from
'react'
;
import
{
Upload
,
message
,
Button
,
Modal
}
from
'antd'
;
import
{
getToken
}
from
'@/webPublic/one_stop_public/utils/token'
;
import
{
uaaRequest
}
from
"@/webPublic/one_stop_public/utils/request"
;
import
getOneStopUploadUrl
from
'@/webPublic/one_stop_public/Base16/getOneStopUploadUrl'
;
export
default
class
UploadZipCom
extends
Component
{
constructor
(
props
)
{
super
(
props
);
this
.
config
=
props
.
config
||
{};
this
.
state
=
{
confirmLoading
:
false
,
showModal
:
false
,
};
}
changeUrl
=
(
info
)
=>
{
if
(
info
.
file
.
status
===
'done'
)
{
message
.
success
(
`
${
info
.
file
.
name
}
上传压缩包成功,正在保存数据,请稍后`
);
this
.
setState
({
file
:
info
.
file
.
response
,
confirmLoading
:
true
});
uaaRequest
(
'/DataObjApi/importZip'
,
{
dataObjId
:
this
.
props
.
dataObjId
,
isExchange
:
this
.
config
.
isExchange
,
nameKey
:
this
.
config
.
nameKey
,
valueKey
:
this
.
config
.
valueKey
,
zipPath
:
info
.
file
.
response
,
}).
then
(()
=>
{
this
.
setState
({
confirmLoading
:
false
});
message
.
success
(
`数据保存成功`
);
});
}
else
if
(
info
.
file
.
status
===
'error'
)
{
message
.
error
(
`
${
info
.
file
.
name
}
上传失败`
);
}
};
changeShowModal
=
()
=>
{
this
.
setState
({
showModal
:
!
this
.
state
.
showModal
,
});
};
render
()
{
const
{
confirmLoading
,
showModal
}
=
this
.
state
;
const
{
modalMessageHtml
,
modalTitle
=
'上传zip压缩包文件'
}
=
this
.
config
;
const
{
file
}
=
this
.
state
;
const
props
=
{
name
:
'file'
,
multiple
:
false
,
action
:
getOneStopUploadUrl
(),
showUploadList
:
false
,
onChange
:
this
.
changeUrl
,
headers
:
{
Authorization
:
`bearer
${
getToken
()}
`
,
},
data
:
{
token
:
getToken
(),
},
};
const
btn
=
this
.
config
.
btn
?
this
.
config
.
btn
:
{
name
:
'导出'
};
return
(
<>
<
Button
type
=
'default'
onClick
=
{
this
.
changeShowModal
}
>
{
btn
.
name
}
<
/Button
>
<
Modal
title
=
{
modalTitle
}
footer
=
{
null
}
onCancel
=
{
this
.
changeShowModal
}
visible
=
{
showModal
}
>
<
div
style
=
{{
display
:
'flex'
,
alignItems
:
'center'
,
justifyContent
:
'center'
,
flexDirection
:
'column'
,
}}
>
<
div
style
=
{{
margin
:
'10px 0'
}}
>
<
div
dangerouslySetInnerHTML
=
{{
__html
:
modalMessageHtml
}}
><
/div
>
<
/div
>
<
Upload
{...
props
}
>
<
Button
{...
btn
}
type
=
'danger'
loading
=
{
confirmLoading
}
>
点击上传
<
/Button
>
<
/Upload
>
<
/div
>
<
/Modal
>
<
/
>
);
}
}
one_stop_public/libs/formList/index.js
浏览文件 @
e03d4b19
...
...
@@ -49,7 +49,7 @@ import {
getGroupListApi
,
}
from
'../../Services/apiConfig'
;
import
{
FormListButtonDiy
}
from
'@/webPublic/one_stop_public/libs/formList/FormListButtonDiy'
;
import
UploadZipCom
from
'./UploadZipCom.js'
;
const
FormItem
=
Form
.
Item
;
const
Popconfirm
=
getPopconfirm
();
const
Modal
=
getModal
();
...
...
@@ -1304,6 +1304,14 @@ class FormList extends React.Component {
selectedRows
=
{
selectedRows
}
obj
=
{
obj
}
/
>
{
this
.
props
.
value
&&
this
.
props
.
value
.
uploadZipConfig
?
this
.
props
.
value
.
uploadZipConfig
.
map
((
r
,
i
)
=>
(
<
UploadZipCom
dataObjId
=
{
this
.
state
.
objId
}
config
=
{
r
}
/
>
))
:
''
}
{
rights
&&
!
rights
.
includes
(
'add'
)
?
(
''
)
:
(
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论