Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
aa50d1cd
提交
aa50d1cd
authored
6月 02, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加审批回调函数
上级
4675e122
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
78 行增加
和
36 行删除
+78
-36
splitDetailSplit.js
one_stop_public/DetailForAudit/splitDetailSplit.js
+35
-25
beforeApplySubmit.js
one_stop_public/utils/beforeApplySubmit.js
+5
-11
beforeAuditSubmit.js
one_stop_public/utils/beforeAuditSubmit.js
+38
-0
没有找到文件。
one_stop_public/DetailForAudit/splitDetailSplit.js
浏览文件 @
aa50d1cd
...
...
@@ -5,6 +5,7 @@ import { getToken } from '@/webPublic/one_stop_public/utils/token';
import
{
callbackSubmitData
}
from
'@/webPublic/one_stop_public/models/callbackExamineProcess'
;
import
{
getModal
}
from
'@/webPublic/one_stop_public/utils/utils'
;
import
{
isJSON
}
from
'@/webPublic/one_stop_public/copy'
;
import
beforeAuditSubmit
from
'@/webPublic/one_stop_public/utils/beforeAuditSubmit'
;
const
Modal
=
getModal
();
...
...
@@ -108,34 +109,43 @@ const submitValues = ({
token
:
getToken
(),
};
payload
=
callbackSubmitData
(
payload
);
dispatch
({
type
:
'affair/getExamineProcess'
,
payload
,
callback
:
val
=>
{
if
(
val
)
{
that
.
getInit
();
that
.
setState
({
isHandle
:
false
,
isSumbitLoading
:
false
,
isSign
:
checked
,
});
Modal
.
success
({
title
:
'操作成功'
,
content
:
(
<
div
>
<
p
>
操作成功
,
点击确认刷新页面
!<
/p
>
<
/div
>
),
onOk
:
()
=>
{
that
.
getInit
();
beforeAuditSubmit
(
payload
)
.
then
(
resParams
=>
{
if
(
!
resParams
)
{
return
false
;
}
else
{
dispatch
({
type
:
'affair/getExamineProcess'
,
payload
:
resParams
,
callback
:
val
=>
{
if
(
val
)
{
that
.
getInit
();
that
.
setState
({
isHandle
:
false
,
isSumbitLoading
:
false
,
isSign
:
checked
,
});
Modal
.
success
({
title
:
'操作成功'
,
content
:
(
<
div
>
<
p
>
操作成功
,
点击确认刷新页面
!<
/p
>
<
/div
>
),
onOk
:
()
=>
{
that
.
getInit
();
},
okText
:
'确认'
,
});
}
else
{
openToast
(
'error'
,
'失败'
,
'请稍后重试'
);
}
},
okText
:
'确认'
,
});
}
else
{
openToast
(
'error'
,
'失败'
,
'请稍后重试'
);
}
},
});
});
},
);
};
...
...
one_stop_public/utils/beforeApplySubmit.js
浏览文件 @
aa50d1cd
import
{
message
,
Modal
}
from
'antd'
;
import
{
uaaRequest
}
from
"@/webPublic/one_stop_public/utils/request"
;
import
{
isJSON
}
from
"@/webPublic/one_stop_public/tableCompon/Split_Index/staticInfo"
;
import
{
uaaRequest
}
from
'@/webPublic/one_stop_public/utils/request'
;
import
{
isJSON
}
from
'@/webPublic/one_stop_public/tableCompon/Split_Index/staticInfo'
;
export
default
function
beforeApplySubmit
(
params
)
{
if
(
params
&&
window
.
beforeApplySubmit
&&
typeof
window
.
beforeApplySubmit
===
'function'
)
{
if
(
params
&&
window
.
beforeApplySubmit
&&
typeof
window
.
beforeApplySubmit
===
'function'
)
{
console
.
log
(
'beforeApplySubmit函数开始执行'
);
const
content
=
params
.
content
&&
isJSON
(
params
.
content
)
?
JSON
.
parse
(
params
.
content
)
:
{};
return
window
return
window
.
beforeApplySubmit
({
message
,
Modal
,
...
...
@@ -24,7 +18,7 @@ export default function beforeApplySubmit(params) {
content
,
})
.
then
((
res
)
=>
{
// console.log(res);
// console.log(res);
return
res
;
})
.
catch
((
err
)
=>
{
...
...
one_stop_public/utils/beforeAuditSubmit.js
0 → 100644
浏览文件 @
aa50d1cd
import
{
message
,
Modal
}
from
'antd'
;
import
{
uaaRequest
}
from
'@/webPublic/one_stop_public/utils/request'
;
export
default
function
beforeAuditSubmit
(
params
)
{
if
(
params
&&
window
.
beforeAuditSubmit
&&
typeof
window
.
beforeAuditSubmit
===
'function'
)
{
console
.
log
(
'beforeAuditSubmit函数开始执行'
);
// const content = params.content && isJSON(params.content) ? JSON.parse(params.content) : {};
return
window
.
beforeAuditSubmit
({
message
,
Modal
,
uaaRequest
:
(
url
,
data
)
=>
{
return
uaaRequest
(
url
,
data
);
},
userNowInfo
:
localStorage
.
getItem
(
'user'
)
?
JSON
.
parse
(
localStorage
.
getItem
(
'user'
))
:
''
,
submitParams
:
params
,
})
.
then
((
res
)
=>
{
// console.log(res);
return
res
;
})
.
catch
((
err
)
=>
{
return
false
;
});
}
else
{
return
new
Promise
((
resolve
,
reject
)
=>
{
resolve
(
params
);
});
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论