1ae926cc by renchao@pashanhoo.com

Merge branch 'dev'

2 parents 07b56b16 29929fe8
1 /* 1 /*
2 * @Description:workFramezu.vue组件的方法 头部按钮弹框方法 2 * @Description:workFramezu.vue组件的方法 头部按钮弹框方法
3 * @Autor: miaofang 3 * @Autor: miaofang
4 * @LastEditTime: 2023-12-19 10:02:20 4 * @LastEditTime: 2024-01-31 17:09:45
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";
...@@ -85,10 +85,7 @@ export default { ...@@ -85,10 +85,7 @@ export default {
85 let that = this; 85 let that = this;
86 switch (item.value) { 86 switch (item.value) {
87 case "B0": 87 case "B0":
88 // this.openDialog() 88 this.openDialog()
89 this.$alert('此功能正在开发', '提示', {
90 confirmButtonText: '确定',
91 })
92 break; 89 break;
93 case "B1": 90 case "B1":
94 getWorkFlowImage(this.bsmSlsq, this.bestepid ? this.bestepid : '').then(res => { 91 getWorkFlowImage(this.bsmSlsq, this.bestepid ? this.bestepid : '').then(res => {
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-10-10 09:07:29 4 * @LastEditTime: 2024-01-31 17:10:22
5 --> 5 -->
6 <template> 6 <template>
7 <div class="container"> 7 <div class="container">
...@@ -286,6 +286,16 @@ ...@@ -286,6 +286,16 @@
286 .catch((res) => { 286 .catch((res) => {
287 console.log("错", res) 287 console.log("错", res)
288 }) 288 })
289 },
290 openDialog () {
291 let data = JSON.parse(localStorage.getItem('ywbl'))
292 let title = ''
293 if (data?.sqywmc) {
294 title = "申请业务:" + data?.sqywmc
295 } else {
296 title = "申请业务:" + data?.djywmc
297 }
298 this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'sqywInfo': data }, "90%", true)
289 } 299 }
290 } 300 }
291 } 301 }
......
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 }
......