style:补录信息义务人信息模块的开发
Showing
7 changed files
with
107 additions
and
28 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-04-26 16:05:28 | 4 | * @LastEditTime: 2023-09-22 13:38:52 |
5 | --> | 5 | --> |
6 | <!-- 批量删除弹框 --> | 6 | <!-- 批量删除弹框 --> |
7 | <template> | 7 | <template> |
... | @@ -52,7 +52,6 @@ | ... | @@ -52,7 +52,6 @@ |
52 | } | 52 | } |
53 | }, | 53 | }, |
54 | methods: { | 54 | methods: { |
55 | // 批量删除确定按钮 | ||
56 | /** | 55 | /** |
57 | * @description: 批量删除确定按钮 | 56 | * @description: 批量删除确定按钮 |
58 | * @author: renchao | 57 | * @author: renchao | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-21 16:03:36 | 4 | * @LastEditTime: 2023-09-22 13:49:53 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <dialogBox | 7 | <dialogBox |
... | @@ -541,7 +541,7 @@ | ... | @@ -541,7 +541,7 @@ |
541 | cancelButtonText: '取消', | 541 | cancelButtonText: '取消', |
542 | }).then(() => { | 542 | }).then(() => { |
543 | replace(val.bsmCompany, this.$route.query.bsmSlsq, bsmSldy).then(res => { | 543 | replace(val.bsmCompany, this.$route.query.bsmSlsq, bsmSldy).then(res => { |
544 | that.$emit("updateDetail", _.cloneDeep({ ...val, sqrlx: '2' })); | 544 | that.$emit("updateDetail", _.cloneDeep({ ...val, qlrlx: '2' })); |
545 | that.$emit("input", false); | 545 | that.$emit("input", false); |
546 | if (res.code == 200) { | 546 | if (res.code == 200) { |
547 | that.$message({ | 547 | that.$message({ | ... | ... |
This diff is collapsed.
Click to expand it.
1 | /* | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-09-22 13:42:40 | ||
5 | */ | ||
6 | import filter from '@/utils/filter.js' | ||
7 | let vm = null | ||
8 | |||
9 | const sendThis = (_this) => { | ||
10 | vm = _this | ||
11 | } | ||
12 | class data1 extends filter { | ||
13 | constructor() { | ||
14 | super() | ||
15 | } | ||
16 | columns () { | ||
17 | return [ | ||
18 | { | ||
19 | prop: "ywrmc", | ||
20 | label: "姓名/名称", | ||
21 | }, | ||
22 | { | ||
23 | prop: "zjzlMc", | ||
24 | label: "证件种类" | ||
25 | }, | ||
26 | { | ||
27 | prop: "zjh", | ||
28 | label: "证件号", | ||
29 | }, | ||
30 | { | ||
31 | prop: "frmc", | ||
32 | label: "法人名称", | ||
33 | }, | ||
34 | { | ||
35 | prop: "txdz", | ||
36 | label: "地址", | ||
37 | }, | ||
38 | { | ||
39 | prop: "dh", | ||
40 | label: "联系电话", | ||
41 | } | ||
42 | ] | ||
43 | } | ||
44 | |||
45 | } | ||
46 | class data2 extends filter { | ||
47 | constructor() { | ||
48 | super() | ||
49 | |||
50 | } | ||
51 | columns () { | ||
52 | return [ | ||
53 | { | ||
54 | prop: "ywrmc", | ||
55 | label: "姓名/名称", | ||
56 | }, | ||
57 | { | ||
58 | prop: "zjzlMc", | ||
59 | label: "证件种类", | ||
60 | }, | ||
61 | { | ||
62 | prop: "zjh", | ||
63 | label: "证件号", | ||
64 | }, | ||
65 | { | ||
66 | prop: "frmc", | ||
67 | label: "法人名称", | ||
68 | }, | ||
69 | { | ||
70 | prop: "txdz", | ||
71 | label: "地址", | ||
72 | }, | ||
73 | { | ||
74 | prop: "dh", | ||
75 | label: "联系电话", | ||
76 | }, | ||
77 | ] | ||
78 | } | ||
79 | |||
80 | } | ||
81 | let dataYh = new data1() | ||
82 | let dataQy = new data2() | ||
83 | export { | ||
84 | dataYh, | ||
85 | dataQy, | ||
86 | sendThis | ||
87 | } |
... | @@ -211,16 +211,15 @@ | ... | @@ -211,16 +211,15 @@ |
211 | if (!this.supplementarylist.length) { | 211 | if (!this.supplementarylist.length) { |
212 | getdjblist() | 212 | getdjblist() |
213 | } | 213 | } |
214 | 214 | }) | |
215 | }); | 215 | }) |
216 | }); | ||
217 | }) | 216 | }) |
218 | .catch(() => { | 217 | .catch(() => { |
219 | this.$message({ | 218 | this.$message({ |
220 | type: "info", | 219 | type: "info", |
221 | message: "已取消删除", | 220 | message: "已取消删除" |
222 | }); | 221 | }) |
223 | }); | 222 | }) |
224 | }, | 223 | }, |
225 | /** | 224 | /** |
226 | * @description: 补录信息点击事件默认展示第一条补录记录 | 225 | * @description: 补录信息点击事件默认展示第一条补录记录 |
... | @@ -228,7 +227,7 @@ | ... | @@ -228,7 +227,7 @@ |
228 | */ | 227 | */ |
229 | blxxClick () { | 228 | blxxClick () { |
230 | if (this.supplementarylist.length) { | 229 | if (this.supplementarylist.length) { |
231 | this.unitClick(0); | 230 | this.unitClick(0) |
232 | } | 231 | } |
233 | } | 232 | } |
234 | } | 233 | } | ... | ... |
1 | /* | 1 | /* |
2 | * @Description:workFramezu.vue组件的方法 头部按钮弹框方法 | 2 | * @Description:workFramezu.vue组件的方法 头部按钮弹框方法 |
3 | * @Autor: miaofang | 3 | * @Autor: miaofang |
4 | * @LastEditTime: 2023-09-18 11:06:44 | 4 | * @LastEditTime: 2023-09-22 13:34:56 |
5 | */ | 5 | */ |
6 | import { getPrintTemplateByCode } from "@/api/print"; | 6 | import { getPrintTemplateByCode } from "@/api/print"; |
7 | import { getQllxByBdcdyid } from "@/api/djbDetail.js"; | 7 | import { getQllxByBdcdyid } from "@/api/djbDetail.js"; |
... | @@ -49,9 +49,8 @@ export default { | ... | @@ -49,9 +49,8 @@ export default { |
49 | */ | 49 | */ |
50 | flowInitParam () { | 50 | flowInitParam () { |
51 | var formdata = new FormData(); | 51 | var formdata = new FormData(); |
52 | 52 | formdata.append("bsmSlsq", this.bsmSlsq) | |
53 | formdata.append("bsmSlsq", this.bsmSlsq); | 53 | formdata.append("bestepid", this.bestepid ? this.bestepid : '') |
54 | formdata.append("bestepid", this.bestepid); | ||
55 | if (this.type) { | 54 | if (this.type) { |
56 | formdata.append("type", "READ_ONLY"); | 55 | formdata.append("type", "READ_ONLY"); |
57 | } | 56 | } |
... | @@ -74,7 +73,6 @@ export default { | ... | @@ -74,7 +73,6 @@ export default { |
74 | }) | 73 | }) |
75 | 74 | ||
76 | }, | 75 | }, |
77 | //流程环节操作按钮 | ||
78 | /** | 76 | /** |
79 | * @description: 流程环节操作按钮 | 77 | * @description: 流程环节操作按钮 |
80 | * @param {*} item | 78 | * @param {*} item |
... | @@ -92,7 +90,7 @@ export default { | ... | @@ -92,7 +90,7 @@ export default { |
92 | }) | 90 | }) |
93 | break; | 91 | break; |
94 | case "B1": | 92 | case "B1": |
95 | getWorkFlowImage(this.bsmSlsq, this.$route.query.bestepid).then(res => { | 93 | getWorkFlowImage(this.bsmSlsq, this.bestepid ? this.bestepid : '').then(res => { |
96 | let { result } = res | 94 | let { result } = res |
97 | this.$popupDialog("流程图", "workflow/components/processViewer", { | 95 | this.$popupDialog("流程图", "workflow/components/processViewer", { |
98 | xml: result.xml, | 96 | xml: result.xml, |
... | @@ -179,13 +177,13 @@ export default { | ... | @@ -179,13 +177,13 @@ export default { |
179 | case "back": //退回按钮 | 177 | case "back": //退回按钮 |
180 | this.$popupDialog("退回", "workflow/components/th", { | 178 | this.$popupDialog("退回", "workflow/components/th", { |
181 | bsmSlsq: this.bsmSlsq, | 179 | bsmSlsq: this.bsmSlsq, |
182 | bestepid: this.bestepid | 180 | bestepid: this.bestepid ? this.bestepid : '' |
183 | }, '800px', true) | 181 | }, '800px', true) |
184 | break; | 182 | break; |
185 | case "transfer": //转件按钮 | 183 | case "transfer": //转件按钮 |
186 | getNextLinkInfo({ | 184 | getNextLinkInfo({ |
187 | bsmSlsq: this.bsmSlsq, | 185 | bsmSlsq: this.bsmSlsq, |
188 | bestepid: this.bestepid, | 186 | bestepid: this.bestepid ? this.bestepid : '' |
189 | }).then((res) => { | 187 | }).then((res) => { |
190 | if (res.code === 200) { | 188 | if (res.code === 200) { |
191 | if (res.result) { | 189 | if (res.result) { |
... | @@ -199,18 +197,18 @@ export default { | ... | @@ -199,18 +197,18 @@ export default { |
199 | case "stop": //终止按钮 | 197 | case "stop": //终止按钮 |
200 | this.$popupDialog("终止", "workflow/components/stop", { | 198 | this.$popupDialog("终止", "workflow/components/stop", { |
201 | bsmSlsq: this.bsmSlsq, | 199 | bsmSlsq: this.bsmSlsq, |
202 | bestepid: this.bestepid, | 200 | bestepid: this.bestepid ? this.bestepid : '' |
203 | }, '600px', true) | 201 | }, '600px', true) |
204 | break; | 202 | break; |
205 | case "signout": | 203 | case "signout": |
206 | window.close(); | 204 | window.close(); |
207 | //取消认领 | 205 | //取消认领 |
208 | unClaimTask(this.bsmSlsq, this.bestepid) | 206 | unClaimTask(this.bsmSlsq, this.bestepid ? this.bestepid : '') |
209 | break; | 207 | break; |
210 | case "B9": | 208 | case "B9": |
211 | var formdata = new FormData(); | 209 | var formdata = new FormData(); |
212 | formdata.append("bsmSlsq", this.bsmSlsq); | 210 | formdata.append("bsmSlsq", this.bsmSlsq); |
213 | formdata.append("bestepid", this.bestepid); | 211 | formdata.append("bestepid", this.bestepid ? this.bestepid : ''); |
214 | this.$confirm("请确认是否登簿", "提示", { | 212 | this.$confirm("请确认是否登簿", "提示", { |
215 | iconClass: "el-icon-question", //自定义图标样式 | 213 | iconClass: "el-icon-question", //自定义图标样式 |
216 | confirmButtonText: "确认", //确认按钮文字更换 | 214 | confirmButtonText: "确认", //确认按钮文字更换 |
... | @@ -272,7 +270,6 @@ export default { | ... | @@ -272,7 +270,6 @@ export default { |
272 | }); | 270 | }); |
273 | }); | 271 | }); |
274 | }, | 272 | }, |
275 | //发送下一个环节 | ||
276 | /** | 273 | /** |
277 | * @description: 发送下一个环节 | 274 | * @description: 发送下一个环节 |
278 | * @param {*} obj | 275 | * @param {*} obj |
... | @@ -286,7 +283,6 @@ export default { | ... | @@ -286,7 +283,6 @@ export default { |
286 | tshowidea: this.showidea | 283 | tshowidea: this.showidea |
287 | }, '600px', true) | 284 | }, '600px', true) |
288 | }, | 285 | }, |
289 | //转出最后一个流程 | ||
290 | /** | 286 | /** |
291 | * @description: 转出最后一个流程 | 287 | * @description: 转出最后一个流程 |
292 | * @author: renchao | 288 | * @author: renchao |
... | @@ -300,8 +296,6 @@ export default { | ... | @@ -300,8 +296,6 @@ export default { |
300 | 296 | ||
301 | }, '600px', true) | 297 | }, '600px', true) |
302 | }, | 298 | }, |
303 | |||
304 | //批量操作 | ||
305 | /** | 299 | /** |
306 | * @description: 批量操作 | 300 | * @description: 批量操作 |
307 | * @author: renchao | 301 | * @author: renchao | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: workFrame左侧菜单列表-普通 | 2 | * @Description: workFrame左侧菜单列表-普通 |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-09-21 14:40:30 | 4 | * @LastEditTime: 2023-09-22 10:12:37 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> | 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> |
... | @@ -215,7 +215,7 @@ | ... | @@ -215,7 +215,7 @@ |
215 | this.$popupDialog("批量删除", "workflow/components/batchDel", { | 215 | this.$popupDialog("批量删除", "workflow/components/batchDel", { |
216 | bsmSlsq: this.bsmSlsq, | 216 | bsmSlsq: this.bsmSlsq, |
217 | dataList: this.unitData, | 217 | dataList: this.unitData, |
218 | }, '50%', true) | 218 | }, '55%', true) |
219 | }, | 219 | }, |
220 | /** | 220 | /** |
221 | * @description: 申请单元点击事件 | 221 | * @description: 申请单元点击事件 | ... | ... |
-
Please register or sign in to post a comment