style:添加不动产单元
Showing
6 changed files
with
8 additions
and
19 deletions
... | @@ -81,7 +81,7 @@ export default { | ... | @@ -81,7 +81,7 @@ export default { |
81 | let that = this; | 81 | let that = this; |
82 | switch (item.value) { | 82 | switch (item.value) { |
83 | case "B0": | 83 | case "B0": |
84 | this.openDialog() | 84 | this.openDialog(item) |
85 | break; | 85 | break; |
86 | case "B1": | 86 | case "B1": |
87 | getWorkFlowImage(this.bsmSlsq, this.bestepid ? this.bestepid : '').then(res => { | 87 | getWorkFlowImage(this.bsmSlsq, this.bestepid ? this.bestepid : '').then(res => { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2024-02-01 09:00:28 | 4 | * @LastEditTime: 2024-02-01 13:36:56 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="container"> | 7 | <div class="container"> |
... | @@ -306,15 +306,9 @@ | ... | @@ -306,15 +306,9 @@ |
306 | this.ableOperation = this.tabList[a.index].ableOperation; | 306 | this.ableOperation = this.tabList[a.index].ableOperation; |
307 | } | 307 | } |
308 | }, | 308 | }, |
309 | openDialog () { | 309 | openDialog (item) { |
310 | let data = JSON.parse(localStorage.getItem('ywbl')) | 310 | console.log(item, 'item'); |
311 | let title = '' | 311 | this.$popupDialog('添加不动产单元', "ywbl/ywsq/selectBdc", { 'sqywInfo': { ...item, isworkFrame: true } }, "90%", true) |
312 | if (data?.sqywmc) { | ||
313 | title = "申请业务:" + data?.sqywmc | ||
314 | } else { | ||
315 | title = "申请业务:" + data?.djywmc | ||
316 | } | ||
317 | this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'sqywInfo': { ...data, bsmSlsq: this.bsmSlsq, isworkFrame: true } }, "90%", true) | ||
318 | } | 312 | } |
319 | } | 313 | } |
320 | } | 314 | } | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-10-27 17:23:24 | 4 | * @LastEditTime: 2024-02-01 13:34:04 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -315,8 +315,6 @@ | ... | @@ -315,8 +315,6 @@ |
315 | ) | 315 | ) |
316 | window.open(href, `workFrame${item.bsmSlsq}`) | 316 | window.open(href, `workFrame${item.bsmSlsq}`) |
317 | } | 317 | } |
318 | localStorage.setItem("ywbl", JSON.stringify(item)) | ||
319 | |||
320 | //从待办箱进入的调取任务领取接口 | 318 | //从待办箱进入的调取任务领取接口 |
321 | claimTask(item.bsmSlsq, item.bestepid); | 319 | claimTask(item.bsmSlsq, item.bestepid); |
322 | } else { | 320 | } else { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-11-16 14:09:32 | 4 | * @LastEditTime: 2024-02-01 13:34:13 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -137,7 +137,6 @@ | ... | @@ -137,7 +137,6 @@ |
137 | item.bsmQlxx + | 137 | item.bsmQlxx + |
138 | "&viewtype=1" | 138 | "&viewtype=1" |
139 | ); | 139 | ); |
140 | localStorage.setItem('ywbl', JSON.stringify(item)); | ||
141 | window.open(href, `urlname${item.bdcdyid}`); | 140 | window.open(href, `urlname${item.bdcdyid}`); |
142 | 141 | ||
143 | }, | 142 | }, | ... | ... |
... | @@ -243,7 +243,6 @@ | ... | @@ -243,7 +243,6 @@ |
243 | * @author: renchao | 243 | * @author: renchao |
244 | */ | 244 | */ |
245 | dblclick (data, index, item) { | 245 | dblclick (data, index, item) { |
246 | localStorage.setItem('ywbl', JSON.stringify(item)); | ||
247 | this.selectSqywClick(data, index); | 246 | this.selectSqywClick(data, index); |
248 | this.dialogClick(); | 247 | this.dialogClick(); |
249 | }, | 248 | }, | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: 选择不动产单元号 | 2 | * @Description: 选择不动产单元号 |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2024-02-01 09:01:30 | 4 | * @LastEditTime: 2024-02-01 13:47:20 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <component :is="router" :sqywInfo="formData.sqywInfo" :isJump="formData.isJump ? formData.isJump : false" | 7 | <component :is="router" :sqywInfo="formData.sqywInfo" :isJump="formData.isJump ? formData.isJump : false" |
... | @@ -39,7 +39,6 @@ | ... | @@ -39,7 +39,6 @@ |
39 | */ | 39 | */ |
40 | 40 | ||
41 | loadView (view) { | 41 | loadView (view) { |
42 | console.log(view, 'viewviewview'); | ||
43 | return (r) => | 42 | return (r) => |
44 | require.ensure([], () => r(require(`./components/${view}.vue`))); | 43 | require.ensure([], () => r(require(`./components/${view}.vue`))); |
45 | }, | 44 | }, | ... | ... |
-
Please register or sign in to post a comment