9d3de639 by renchao@pashanhoo.com

style:选择不动产单元

1 parent ac98a186
...@@ -86,10 +86,10 @@ export default { ...@@ -86,10 +86,10 @@ export default {
86 let that = this; 86 let that = this;
87 switch (item.value) { 87 switch (item.value) {
88 case "B0": 88 case "B0":
89 // this.openDialog() 89 this.openDialog()
90 this.$alert('此功能正在开发', '提示', { 90 // this.$alert('此功能正在开发', '提示', {
91 confirmButtonText: '确定', 91 // confirmButtonText: '确定',
92 }) 92 // })
93 break; 93 break;
94 case "B1": 94 case "B1":
95 getWorkFlowImage(this.bsmSlsq, this.bestepid ? this.bestepid : '').then(res => { 95 getWorkFlowImage(this.bsmSlsq, this.bestepid ? this.bestepid : '').then(res => {
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2024-01-23 09:57:51 4 * @LastEditTime: 2024-01-31 16:52:43
5 */ 5 */
6 import Vue from 'vue' 6 import Vue from 'vue'
7 import { getPrintTemplateByCode } from "@/api/print"; 7 import { getPrintTemplateByCode } from "@/api/print";
...@@ -81,10 +81,7 @@ export default { ...@@ -81,10 +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()
85 this.$alert('此功能正在开发', '提示', {
86 confirmButtonText: '确定',
87 })
88 break; 85 break;
89 case "B1": 86 case "B1":
90 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-01-23 10:25:51 4 * @LastEditTime: 2024-01-31 16:59:27
5 --> 5 -->
6 <template> 6 <template>
7 <div class="container"> 7 <div class="container">
...@@ -290,6 +290,16 @@ ...@@ -290,6 +290,16 @@
290 if (p) { 290 if (p) {
291 this.ableOperation = this.tabList[a.index].ableOperation; 291 this.ableOperation = this.tabList[a.index].ableOperation;
292 } 292 }
293 },
294 openDialog () {
295 let data = JSON.parse(localStorage.getItem('ywbl'))
296 let title = ''
297 if (data?.sqywmc) {
298 title = "申请业务:" + data?.sqywmc
299 } else {
300 title = "申请业务:" + data?.djywmc
301 }
302 this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'sqywInfo': data }, "90%", true)
293 } 303 }
294 } 304 }
295 } 305 }
......