重新分类
Showing
4 changed files
with
2 additions
and
103 deletions
1 | <!-- | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-09-27 08:51:13 | ||
5 | --> | ||
6 | <template> | ||
7 | <div class="from-clues"> | ||
8 | <div class="invalid-title"> | ||
9 | <i class="el-icon-question invalid-icon"></i> | ||
10 | <div class="invalid-body">您是否确定终止该业务办理?</div> | ||
11 | </div> | ||
12 | <div class="invalid-reson">退件原因:</div> | ||
13 | <el-input | ||
14 | v-model="stopMessage" | ||
15 | placeholder="请输入终止原因" | ||
16 | type="textarea" | ||
17 | :rows="4"></el-input> | ||
18 | <div style="overflow:hidden;text-align:center;margin-top:10px"> | ||
19 | <el-button @click="cancelBack">取消</el-button> | ||
20 | <el-button type="primary" @click="onSubmit">退件</el-button> | ||
21 | </div> | ||
22 | </div> | ||
23 | </template> | ||
24 | |||
25 | <script> | ||
26 | import { stopTask } from "@/api/workFlow.js"; | ||
27 | import { popupCacel } from "@/utils/popup.js"; | ||
28 | export default { | ||
29 | props: { | ||
30 | formData: { | ||
31 | type: Object, | ||
32 | default: {}, | ||
33 | }, | ||
34 | }, | ||
35 | data () { | ||
36 | return { | ||
37 | stopMessage: "", | ||
38 | }; | ||
39 | }, | ||
40 | methods: { | ||
41 | /** | ||
42 | * @description: onSubmit | ||
43 | * @author: renchao | ||
44 | */ | ||
45 | onSubmit () { | ||
46 | stopTask({ | ||
47 | bsmSlsq: this.formData.bsmSlsq, | ||
48 | bestepid: this.formData.bestepid, | ||
49 | stopMessage: this.stopMessage, | ||
50 | }).then((res) => { | ||
51 | this.$message.success("终止成功"); | ||
52 | setTimeout(() => { | ||
53 | // window.opener.location.reload(); //刷新父窗口 | ||
54 | if (window.opener && window.opener.getBpageList) { | ||
55 | window.opener.getBpageList(); | ||
56 | } else { | ||
57 | window.opener.frames[0].getBpageList(); | ||
58 | } | ||
59 | window.close(); | ||
60 | this.$emit("input", false); | ||
61 | }, 1000); | ||
62 | }); | ||
63 | }, | ||
64 | /** | ||
65 | * @description: closeDialog | ||
66 | * @author: renchao | ||
67 | */ | ||
68 | cancelBack () { | ||
69 | popupCacel(); | ||
70 | }, | ||
71 | }, | ||
72 | }; | ||
73 | </script> | ||
74 | <style scoped lang="scss"> | ||
75 | @import "~@/styles/mixin.scss"; | ||
76 | .invalid-title { | ||
77 | display: flex; | ||
78 | align-content: center; | ||
79 | |||
80 | .invalid-icon { | ||
81 | color: rgb(254, 148, 0); | ||
82 | font-size: 34px; | ||
83 | margin-right: 10px; | ||
84 | } | ||
85 | |||
86 | .invalid-body { | ||
87 | line-height: 40px; | ||
88 | margin-bottom: 10px; | ||
89 | } | ||
90 | } | ||
91 | |||
92 | .invalid-reson { | ||
93 | margin-bottom: 10px; | ||
94 | } | ||
95 | |||
96 | .dialog-footer { | ||
97 | margin-top: 10px; | ||
98 | display: flex; | ||
99 | justify-content: flex-end; | ||
100 | } | ||
101 | </style> |
... | @@ -155,7 +155,7 @@ | ... | @@ -155,7 +155,7 @@ |
155 | }, | 155 | }, |
156 | hanldeAdd () { | 156 | hanldeAdd () { |
157 | let bsmBusiness = this.$route.query.bsmBusiness ? this.$route.query.bsmBusiness : window.currentSelect.bsmBusiness | 157 | let bsmBusiness = this.$route.query.bsmBusiness ? this.$route.query.bsmBusiness : window.currentSelect.bsmBusiness |
158 | this.$popupDialog('新增', 'workflow/components/dialog/xzsf', { bsmBusiness: bsmBusiness }, '50%', true) | 158 | this.$popupDialog('新增', 'workflow/main/sfxx/xzsf', { bsmBusiness: bsmBusiness }, '50%', true) |
159 | }, | 159 | }, |
160 | handleDelete (row) { | 160 | handleDelete (row) { |
161 | let that = this | 161 | let that = this | ... | ... |
... | @@ -195,7 +195,7 @@ export default { | ... | @@ -195,7 +195,7 @@ export default { |
195 | }); | 195 | }); |
196 | break; | 196 | break; |
197 | case "stop": //终止按钮 | 197 | case "stop": //终止按钮 |
198 | this.$popupDialog("终止", "workflow/components/stop", { | 198 | this.$popupDialog("终止", "workflow/top/stop/index", { |
199 | bsmSlsq: this.bsmSlsq, | 199 | bsmSlsq: this.bsmSlsq, |
200 | bestepid: this.bestepid ? this.bestepid : '' | 200 | bestepid: this.bestepid ? this.bestepid : '' |
201 | }, '600px', true) | 201 | }, '600px', true) | ... | ... |
-
Please register or sign in to post a comment