Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
45e30bd9
提交
45e30bd9
authored
12月 28, 2021
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
签章批量审核
上级
2a15206c
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
77 行增加
和
19 行删除
+77
-19
AuditPage.js
FormInsertDiy/AffairPage/AuditPage/AuditPage.js
+2
-2
QnmzBatchAudit.js
FormInsertDiy/AffairPage/AuditPage/QnmzBatchAudit.js
+34
-0
index.js
FormInsertDiy/AffairPage/AuditPage/index.js
+2
-1
index.js
FormInsertDiy/AuditButton/index.js
+35
-2
AuditModal.js
FormInsertDiy/AuditPage/BatchAudit/AuditModal.js
+2
-2
callbackExamineProcess.js
one_stop_public/models/callbackExamineProcess.js
+1
-11
publicServices.js
one_stop_public/publicServices.js
+1
-1
没有找到文件。
FormInsertDiy/AffairPage/AuditPage/AuditPage.js
浏览文件 @
45e30bd9
...
...
@@ -16,7 +16,7 @@ export default class AuditPage extends Component {
componentDidMount
()
{}
handleButtonSet
=
()
=>
{
const
{
hasBatchAudit
,
batchAuditButtonName
}
=
this
.
props
;
const
{
hasBatchAudit
,
batchAuditButtonName
,
noNeedForm
}
=
this
.
props
;
return
{
tab1
:
[
hasBatchAudit
...
...
@@ -42,7 +42,7 @@ export default class AuditPage extends Component {
onShow
();
}
return
(
<
AuditModal
selectRows
=
{
selectRows
}
getPage
=
{
getPage
}
>
<
AuditModal
selectRows
=
{
selectRows
}
getPage
=
{
getPage
}
noNeedForm
=
{
noNeedForm
}
>
{({
onShow
})
=>
(
<
ButtonDiy
name
=
{
batchAuditButtonName
||
'批量审核'
}
...
...
FormInsertDiy/AffairPage/AuditPage/QnmzBatchAudit.js
0 → 100644
浏览文件 @
45e30bd9
/***
* 批量审核
* 2020年5月7日 09:53:12
* 钟是志
*
* */
import
React
,
{
Component
}
from
'react'
;
import
AuditPage
from
'./index'
;
import
{
getOneStopConfig
}
from
'@/webPublic/zyd_public/utils/utils'
;
import
{
getOneStopSystemConfig
}
from
'@/webPublic/one_stop_public/publicServices'
;
export
default
class
BatchAudit
extends
Component
{
constructor
(
props
)
{
super
(
props
);
getOneStopSystemConfig
({
configKeys
:
'signingBatchApprovalKey'
,
}).
then
((
res
)
=>
{
if
(
res
&&
res
.
length
){
let
func
=
res
[
0
].
configValue
;
let
x
=
new
Function
(
func
);
x
();
}
});
}
componentWillUnmount
()
{
window
.
stuSigningAuditXueShengChu
=
undefined
;
}
render
()
{
return
<
AuditPage
{...
this
.
props
}
hasBatchAudit
=
{
true
}
noNeedForm
=
{
true
}
/>
;
}
}
FormInsertDiy/AffairPage/AuditPage/index.js
浏览文件 @
45e30bd9
...
...
@@ -153,7 +153,7 @@ export default class Index extends React.Component {
allConfigSetInfo
,
tableInfo
,
}
=
this
.
state
;
const
{
hasBatchAudit
,
batchAuditButtonName
,
showPrint
}
=
this
.
props
;
const
{
hasBatchAudit
,
batchAuditButtonName
,
showPrint
,
noNeedForm
}
=
this
.
props
;
if
(
!
workId
)
{
return
null
;
}
...
...
@@ -169,6 +169,7 @@ export default class Index extends React.Component {
searchCondition
=
{
searchCondition
}
batchAuditButtonName
=
{
batchAuditButtonName
}
showPrint
=
{
showPrint
}
noNeedForm
=
{
noNeedForm
}
/
>
);
}
...
...
FormInsertDiy/AuditButton/index.js
浏览文件 @
45e30bd9
...
...
@@ -7,6 +7,7 @@
* 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'
;
...
...
@@ -15,6 +16,7 @@ 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'
;
function
AuditButton
(
props
)
{
const
[
visible
,
setVisible
]
=
useState
(
false
);
...
...
@@ -26,7 +28,37 @@ function AuditButton(props) {
// 有taskIds属性时,是批量审核,
const
{
dispatch
,
callback
,
data
,
form
,
taskIds
}
=
props
;
const
{
oldKey
,
btnValue
}
=
affairOkParams
;
if
(
window
.
stuSigningAuditXueShengChu
)
{
window
.
stuSigningAuditXueShengChu
({
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
(),
taskIds
:
taskIds
||
[
data
.
taskId
],
// 接口里面的taskId 任务Id
examineMap
:
JSON
.
stringify
({
[
oldKey
]:
btnValue
,
// 每个配置按钮对应的对象内容 oldkey = 接口中 key btnValue = 接口中 value
// reason: value, // 审批理由
code
:
taskIds
?
undefined
:
data
.
code
,
}),
code
:
taskIds
?
undefined
:
data
.
code
,
message
,
Modal
,
uaaRequest
,
callback
,
setVisible
,
setSubmitLoading
,
remark
:
{
setVisible
:
'关闭弹窗的方法'
,
setSubmitLoading
:
'显示为加载中'
,
path
:
' 代码在学工的这里面 src/webPublic/FormInsertDiy/AuditButton/index.js'
,
message
:
'蚂蚁金服的message 用来展示进度条. 不懂问我'
,
Modal
:
'蚂蚁金服的Modal 用来提示审核已完成'
,
callback
:
'执行完了的回调函数'
,
else
:
'其他参数打印出来自己看看'
,
uaaRequest
:
'调一站式的接口的方法'
,
},
});
return
true
;
}
form
.
validateFieldsAndScroll
((
err
,
values
)
=>
{
if
(
err
)
return
;
setSubmitLoading
(
true
);
...
...
@@ -43,7 +75,8 @@ function AuditButton(props) {
taskForm
:
JSON
.
stringify
(
values
),
// 审批表单的参数值
apiData
:
data
,
taskFormKey
:
data
?.
taskFormKey
,
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
(),
...
...
FormInsertDiy/AuditPage/BatchAudit/AuditModal.js
浏览文件 @
45e30bd9
...
...
@@ -6,7 +6,7 @@ import RenderForm from '../../RenderForm';
const
TextArea
=
Input
.
TextArea
;
function
AuditModal
({
form
,
selectRows
,
children
,
getPage
})
{
function
AuditModal
({
form
,
selectRows
,
children
,
getPage
,
noNeedForm
})
{
const
[
visible
,
setVisible
]
=
useState
(
false
);
function
submitCb
(
res
)
{
...
...
@@ -65,7 +65,7 @@ function AuditModal({ form, selectRows, children, getPage }) {
footer
=
{
footer
}
onCancel
=
{()
=>
setVisible
(
false
)}
>
<
Spin
spinning
=
{
loading
}
>
{
data
&&
data
.
isHandle
&&
!!
data
.
taskFormKey
?
(
{
data
&&
data
.
isHandle
&&
!!
data
.
taskFormKey
&&
!
noNeedForm
?
(
<
RenderForm
postData
=
{
data
}
get
=
"web"
...
...
one_stop_public/models/callbackExamineProcess.js
浏览文件 @
45e30bd9
// export function submitProcessData({ payload, item, data }) {
// let postData = {
// ...payload,
// buttonInfo: item,
// ssxRemark:
// 'examineMap 和 taskForm 都是json字符串 通过修改 examineMap, taskForm中的值 达到改变提交记录的效果',
// apiData: data,
// taskFormKey: data.taskFormKey,
// };
// return postData;
// }
import
{
message
,
Modal
}
from
'antd'
;
export
function
callbackSubmitData
(
infoData
)
{
console
.
log
(
infoData
);
...
...
one_stop_public/publicServices.js
浏览文件 @
45e30bd9
import
{
uaaRequest
}
from
'@/webPublic/one_stop_public/utils/request'
;
const
getOneStopSystemConfig
=
(
params
)
=>
{
export
const
getOneStopSystemConfig
=
(
params
)
=>
{
return
uaaRequest
(
'/ConfigApi/getDetails'
,
params
);
};
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论