Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
fefc8890
提交
fefc8890
authored
7月 27, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
28471 批量审核加一个进度条
上级
11c7ec36
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
188 行增加
和
54 行删除
+188
-54
index.js
FormInsertDiy/AuditButton/index.js
+87
-45
AuditProcessOneByOne.js
FormInsertDiy/AuditButton/pagesBtn/AuditProcessOneByOne.js
+95
-0
styles.less
FormInsertDiy/AuditButton/pagesBtn/styles.less
+5
-2
AuditModal.js
FormInsertDiy/AuditPage/BatchAudit/AuditModal.js
+1
-7
没有找到文件。
FormInsertDiy/AuditButton/index.js
浏览文件 @
fefc8890
...
...
@@ -6,33 +6,46 @@
* callback 提交完成后执行回调函数
* form form表单控件
*/
import
React
,
{
useState
}
from
"react"
;
import
{
Modal
,
message
}
from
"antd"
;
import
{
preHandle
}
from
"@/webPublic/one_stop_public/utils/myutils"
;
import
{
connect
}
from
"dva"
;
import
Btn
from
"./pagesBtn"
;
import
styles
from
"./styles.less"
;
import
ModalDiy
from
"@/baseComponent/ModalDiy"
;
import
{
callbackSubmitData
}
from
"@/webPublic/one_stop_public/models/callbackExamineProcess"
;
import
{
getToken
}
from
"@/utils/authority"
;
import
{
isJSON
}
from
"@/webPublic/zyd_public/utils/utils"
;
import
{
uaaRequest
}
from
"@/webPublic/one_stop_public/utils/request"
;
import
React
,
{
useState
}
from
'react'
;
import
{
Modal
,
message
}
from
'antd'
;
import
{
preHandle
}
from
'@/webPublic/one_stop_public/utils/myutils'
;
import
{
connect
}
from
'dva'
;
import
Btn
from
'./pagesBtn'
;
import
styles
from
'./styles.less'
;
import
ModalDiy
from
'@/baseComponent/ModalDiy'
;
import
{
callbackSubmitData
}
from
'@/webPublic/one_stop_public/models/callbackExamineProcess'
;
import
{
getToken
}
from
'@/utils/authority'
;
import
{
isJSON
}
from
'@/webPublic/zyd_public/utils/utils'
;
import
{
uaaRequest
}
from
'@/webPublic/one_stop_public/utils/request'
;
import
AuditProcessOneByOne
from
'@/webPublic/FormInsertDiy/AuditButton/pagesBtn/AuditProcessOneByOne'
;
function
AuditButton
(
props
)
{
const
[
visible
,
setVisible
]
=
useState
(
false
);
const
[
modalContent
,
setModalContent
]
=
useState
(
""
);
const
[
modalContent
,
setModalContent
]
=
useState
(
''
);
const
[
isSubmitLoading
,
setSubmitLoading
]
=
useState
(
false
);
const
[
affairOkParams
,
setAffairParams
]
=
useState
({});
const
[
showProcessModal
,
setShowProcessModal
]
=
useState
(
false
);
// 增加进度条 1条数据1条数据的调用接口
const
{
callback
}
=
props
;
function
affairOk
()
{
// 有taskIds属性时,是批量审核,
const
{
dispatch
,
callback
,
data
,
form
,
taskIds
,
selectRows
}
=
props
;
const
{
oldKey
,
btnValue
}
=
affairOkParams
;
if
(
window
.
stuSigningAuditXueShengChu
&&
btnValue
===
"0"
)
{
const
{
dispatch
,
data
,
form
,
taskIds
,
selectRows
}
=
props
;
const
{
oldKey
,
btnValue
}
=
affairOkParams
;
if
(
window
.
stuSigningAuditXueShengChu
&&
btnValue
===
'0'
)
{
// 黔南就业学生处批量审批签章 特殊处理 专门为黔南签章批量审核搞的函数
// 应该是点击同意才执行这个全局函数.
window
.
stuSigningAuditXueShengChu
({
userNowInfo
:
(
isJSON
(
localStorage
.
getItem
(
"user"
))
&&
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)))
||
{},
userNowInfo
:
(
isJSON
(
localStorage
.
getItem
(
'user'
))
&&
JSON
.
parse
(
localStorage
.
getItem
(
'user'
)))
||
{},
buttonInfo
:
data
?.
btns
&&
data
?.
btns
.
length
?
data
?.
btns
.
find
((
x
)
=>
x
.
value
===
btnValue
)
:
{},
token
:
getToken
(),
selectRows
,
...
...
@@ -51,14 +64,14 @@ function AuditButton(props) {
setVisible
,
setSubmitLoading
,
remark
:
{
setVisible
:
"关闭弹窗的方法"
,
setSubmitLoading
:
"显示为加载中"
,
path
:
" 代码在学工的这里面 src/webPublic/FormInsertDiy/AuditButton/index.js"
,
message
:
"蚂蚁金服的message 用来展示进度条. 不懂问我"
,
Modal
:
"蚂蚁金服的Modal 用来提示审核已完成"
,
callback
:
"执行完了的回调函数"
,
else
:
"其他参数打印出来自己看看"
,
uaaRequest
:
"调一站式的接口的方法"
setVisible
:
'关闭弹窗的方法'
,
setSubmitLoading
:
'显示为加载中'
,
path
:
' 代码在学工的这里面 src/webPublic/FormInsertDiy/AuditButton/index.js'
,
message
:
'蚂蚁金服的message 用来展示进度条. 不懂问我'
,
Modal
:
'蚂蚁金服的Modal 用来提示审核已完成'
,
callback
:
'执行完了的回调函数'
,
else
:
'其他参数打印出来自己看看'
,
uaaRequest
:
'调一站式的接口的方法'
}
});
return
true
;
...
...
@@ -69,6 +82,7 @@ function AuditButton(props) {
setSubmitLoading
(
true
);
preHandle
(
values
);
let
payload
=
{
// 批量 和 单个审批 都用这段代码
taskIds
:
taskIds
||
[
data
.
taskId
],
// 接口里面的taskId 任务Id
code
:
taskIds
?
undefined
:
data
.
code
,
// 审核相关内容
...
...
@@ -81,13 +95,19 @@ function AuditButton(props) {
apiData
:
data
,
taskFormKey
:
data
?.
taskFormKey
,
userNowInfo
:
(
isJSON
(
localStorage
.
getItem
(
"user"
))
&&
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)))
||
{},
(
isJSON
(
localStorage
.
getItem
(
'user'
))
&&
JSON
.
parse
(
localStorage
.
getItem
(
'user'
)))
||
{},
buttonInfo
,
token
:
getToken
()
};
payload
=
callbackSubmitData
(
payload
);
console
.
log
(
payload
);
setVisible
(
false
);
setShowProcessModal
(
payload
);
return
false
;
dispatch
({
type
:
"affair/getExamineProcess"
,
type
:
'affair/getExamineProcess'
,
payload
,
callback
:
(
val
)
=>
{
setSubmitLoading
(
false
);
...
...
@@ -118,46 +138,55 @@ function AuditButton(props) {
* 根据不同值,返回对应样式
*/
function
getStyle
(
key
,
value
)
{
if
(
key
===
"examine"
)
{
if
(
key
===
'examine'
)
{
switch
(
value
)
{
case
1
:
return
[
`
${
styles
.
btn_margin
}
`
,
`
${
styles
.
btn
}
`
,
`
${
styles
.
btn_reject
}
`
].
join
(
" "
);
return
[
`
${
styles
.
btn_margin
}
`
,
`
${
styles
.
btn
}
`
,
`
${
styles
.
btn_reject
}
`
].
join
(
' '
);
case
2
:
return
[
`
${
styles
.
btn_margin
}
`
,
`
${
styles
.
btn
}
`
,
`
${
styles
.
btn_no
}
`
].
join
(
" "
);
return
[
`
${
styles
.
btn_margin
}
`
,
`
${
styles
.
btn
}
`
,
`
${
styles
.
btn_no
}
`
].
join
(
' '
);
case
0
:
return
"deafalut"
;
case
"1"
:
return
[
`
${
styles
.
btn_margin
}
`
,
`
${
styles
.
btn
}
`
,
`
${
styles
.
btn_reject
}
`
].
join
(
" "
);
case
"2"
:
return
[
`
${
styles
.
btn_margin
}
`
,
`
${
styles
.
btn
}
`
,
`
${
styles
.
btn_no
}
`
].
join
(
" "
);
case
"0"
:
return
"deafalut"
;
return
'deafalut'
;
case
'1'
:
return
[
`
${
styles
.
btn_margin
}
`
,
`
${
styles
.
btn
}
`
,
`
${
styles
.
btn_reject
}
`
].
join
(
' '
);
case
'2'
:
return
[
`
${
styles
.
btn_margin
}
`
,
`
${
styles
.
btn
}
`
,
`
${
styles
.
btn_no
}
`
].
join
(
' '
);
case
'0'
:
return
'deafalut'
;
default
:
return
"deafalut"
;
return
'deafalut'
;
}
}
else
{
return
"deafalut"
;
return
'deafalut'
;
}
}
function
showModal
(
str
,
key
,
value
)
{
const
{
data
,
form
}
=
props
;
const
{
data
,
form
}
=
props
;
const
buttonInfo
=
data
?.
btns
&&
data
?.
btns
.
length
?
data
?.
btns
.
find
((
x
)
=>
x
.
value
===
value
)
:
{};
const
values
=
form
.
getFieldsValue
();
if
(
buttonInfo
?.
documentation
)
{
if
(
buttonInfo
?.
documentation
)
{
let
needAuditInfo
=
isJSON
(
buttonInfo
.
documentation
)
&&
JSON
.
parse
(
buttonInfo
.
documentation
)?.
needAuditInfo
;
if
(
needAuditInfo
&&
!
values
.
reason
)
{
if
(
needAuditInfo
&&
!
values
.
reason
)
{
message
.
warning
(
'请输入审批理由'
);
return
;
return
;
}
}
setModalContent
(
`确定
${
str
}
吗?`
);
setAffairParams
({
oldKey
:
key
,
btnValue
:
value
});
setAffairParams
({
oldKey
:
key
,
btnValue
:
value
});
setVisible
(
true
);
}
const
{
data
:
{
isHandle
,
btns
}
data
:
{
isHandle
,
btns
}
}
=
props
;
if
(
!
isHandle
||
!
Array
.
isArray
(
btns
)
||
btns
.
length
<
1
)
return
null
;
return
(
...
...
@@ -181,10 +210,23 @@ function AuditButton(props) {
handleCancel
=
{
hideModal
}
handleOk
=
{
affairOk
}
confirmLoading
=
{
isSubmitLoading
}
>
<
div
style
=
{{
fontSize
:
16
,
textAlign
:
"center"
,
height
:
150
,
lineHeight
:
"150px"
}}
>
<
div
style
=
{{
fontSize
:
16
,
textAlign
:
'center'
,
height
:
150
,
lineHeight
:
'150px'
}}
>
{
modalContent
}
<
/div
>
<
/ModalDiy
>
{
showProcessModal
&&
<
AuditProcessOneByOne
payloadData
=
{
showProcessModal
}
callBack
=
{
callback
}
setShowProcessModal
=
{
setShowProcessModal
}
/
>
}
<
/
>
);
}
...
...
FormInsertDiy/AuditButton/pagesBtn/AuditProcessOneByOne.js
0 → 100644
浏览文件 @
fefc8890
import
React
,
{
useState
,
useEffect
,
useRef
}
from
'react'
;
import
{
Modal
,
Progress
,
message
}
from
'antd'
;
import
{
uaaRequest
}
from
'@/webPublic/one_stop_public/utils/request'
;
import
styles
from
'./styles.less'
;
export
default
function
AuditProcessOneByOne
({
payloadData
=
{},
callBack
=
()
=>
{
},
setShowProcessModal
,
})
{
if
(
!
Array
.
isArray
(
payloadData
?.
taskIds
)
||
!
payloadData
.
taskIds
.
length
)
{
return
null
;
}
const
[
success
,
setS
]
=
useState
(
0
);
const
[
error
,
setE
]
=
useState
(
0
);
const
resInfo
=
useRef
();
const
taskIds
=
payloadData
.
taskIds
;
const
total
=
taskIds
.
length
;
async
function
getData
(){
for
(
let
g
=
0
;
g
<
taskIds
.
length
;
g
++
)
{
const
res
=
await
returnPromise
({
...
payloadData
,
taskIds
:
[
taskIds
[
g
]],
});
if
(
res
)
{
setS
((
v
)
=>
v
+
1
);
}
else
{
setE
((
v
)
=>
v
+
1
);
}
resInfo
.
current
=
res
;
}
}
useEffect
(()
=>
{
getData
();
},
[]);
useEffect
(()
=>
{
if
(
success
+
error
===
total
)
{
callBack
(
resInfo
.
current
);
}
},
[
success
,
error
]);
const
percent
=
Math
.
floor
(((
success
+
error
)
/
total
)
*
100
);
return
(
<
Modal
title
=
{
'批量审核'
}
visible
=
{
true
}
width
=
{
1200
}
footer
=
{
null
}
onCancel
=
{()
=>
{
if
(
success
+
error
!==
total
){
message
.
warning
(
'审核正在进行中,请勿关闭'
);
}
else
{
setShowProcessModal
(
false
);
}
}}
>
<
div
className
=
{
styles
.
juzhong
}
>
<
Progress
percent
=
{
percent
}
type
=
'circle'
status
=
{
error
===
total
?
'exception'
:
success
+
error
===
total
?
'success '
:
''
}
strokeColor
=
{{
'0%'
:
'#108ee9'
,
'100%'
:
'#87d068'
,
}}
/
>
<
div
>
{
success
+
error
===
total
?
`审核完成, 成功
${
success
}
条, 失败
${
error
}
条`
:
`正在进行审核 共
${
total
}
条数据, 成功
${
success
}
条, 失败
${
error
}
条`
}
<
/div
>
<
/div
>
<
/Modal
>
);
}
let
i
=
0
;
function
returnPromise
(
data
)
{
// return new Promise((resolve, reject) => {
// i++;
// if (i % 2 > 0) {
// resolve(true);
// } else {
// resolve(false);
// }
// });
return
uaaRequest
(
'/UnifiedAppFormApi/examineProcess'
,
data
);
}
FormInsertDiy/AuditButton/pagesBtn/styles.less
浏览文件 @
fefc8890
...
...
@@ -20,4 +20,8 @@
color: #FF9B00;
border:1px solid #FF9B00;
}
}
\ No newline at end of file
}
.juzhong{
display: grid;
justify-items: center;
}
FormInsertDiy/AuditPage/BatchAudit/AuditModal.js
浏览文件 @
fefc8890
...
...
@@ -14,13 +14,6 @@ function AuditModal({ form, selectRows, children, getPage, noNeedForm }) {
message
.
info
(
`提交
${
res
?
'成功'
:
'失败'
}
!`
);
setVisible
(
false
);
getPage
();
// 19684 优秀学生奖学金---班主任审核页面--弹框提醒优化处理 禅道bug
// ModalInfo(`提交${res ? '成功' : '失败'}!`, {
// onOk: () => {
// setVisible(false);
// getPage();
// },
// });
}
const
[
data
,
setData
]
=
useState
(
null
);
...
...
@@ -82,6 +75,7 @@ function AuditModal({ form, selectRows, children, getPage, noNeedForm }) {
width
=
{
900
}
visible
=
{
visible
}
title
=
"批量审核"
maskClosable
=
{
false
}
footer
=
{
footer
}
onCancel
=
{()
=>
setVisible
(
false
)}
>
<
Spin
spinning
=
{
loading
}
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论