Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
c49d95a8
Commit
c49d95a8
authored
Aug 14, 2023
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
审核请求中屏蔽操作
(cherry picked from commit
eac32a12
)
parent
ab30e4b3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
detail.vue
src/views/bpm/processInstance/detail.vue
+10
-3
No files found.
src/views/bpm/processInstance/detail.vue
View file @
c49d95a8
...
...
@@ -25,11 +25,11 @@
</el-form-item>
</el-form>
<div
style=
"margin-left: 10%; margin-bottom: 20px; font-size: 14px;"
>
<el-button
icon=
"el-icon-edit-outline"
type=
"success"
size=
"mini"
@
click=
"handleAudit(item, true)"
>
{{
$t
(
'
通过
'
)
}}
<el-button
:loading=
"loading"
icon=
"el-icon-edit-outline"
type=
"success"
size=
"mini"
@
click=
"handleAudit(item, true)"
>
{{
$t
(
'
通过
'
)
}}
</el-button>
<el-button
icon=
"el-icon-circle-close"
type=
"danger"
size=
"mini"
@
click=
"handleAudit(item, false)"
>
{{
$t
(
'
不通过
'
)
}}
<el-button
:loading=
"loading"
icon=
"el-icon-circle-close"
type=
"danger"
size=
"mini"
@
click=
"handleAudit(item, false)"
>
{{
$t
(
'
不通过
'
)
}}
</el-button>
<el-button
icon=
"el-icon-edit-outline"
type=
"primary"
size=
"mini"
@
click=
"handleUpdateAssignee(item)"
>
{{
$t
(
'
转办
'
)
}}
<el-button
:loading=
"loading"
icon=
"el-icon-edit-outline"
type=
"primary"
size=
"mini"
@
click=
"handleUpdateAssignee(item)"
>
{{
$t
(
'
转办
'
)
}}
</el-button>
<!--
<el-button
icon=
"el-icon-edit-outline"
type=
"primary"
size=
"mini"
@
click=
"handleDelegate(item)"
>
{{
$t
(
'
委派
'
)
}}
</el-button>
-->
<!--
<el-button
icon=
"el-icon-refresh-left"
type=
"warning"
size=
"mini"
@
click=
"handleBack(item)"
>
{{
$t
(
'
退回
'
)
}}
</el-button>
-->
...
...
@@ -404,6 +404,8 @@ export default {
},
data
()
{
return
{
// 提交中
loading
:
false
,
// 遮罩层
processInstanceLoading
:
true
,
// 流程实例
...
...
@@ -637,12 +639,15 @@ export default {
comment
:
this
.
auditForms
[
index
].
comment
,
copyUserIds
:
this
.
auditForms
[
index
].
copyUserIds
}
this
.
loading
=
true
if
(
pass
)
{
approveTask
(
data
).
then
(
response
=>
{
let
p
=
this
.
matterNum
//this.$store.commit('GET_MAATER', --p)
this
.
$modal
.
msgSuccess
(
"
审批通过成功!
"
);
this
.
getDetail
();
// 获得最新详情
}).
finally
(()
=>
{
this
.
loading
=
false
});
}
else
{
rejectTask
(
data
).
then
(
response
=>
{
...
...
@@ -650,6 +655,8 @@ export default {
//this.$store.commit('GET_MAATER', --p)
this
.
$modal
.
msgSuccess
(
"
审批不通过成功!
"
);
this
.
getDetail
();
// 获得最新详情
}).
finally
(()
=>
{
this
.
loading
=
false
});
}
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment