9d3de639 by renchao@pashanhoo.com

style:选择不动产单元

1 parent ac98a186
......@@ -86,10 +86,10 @@ export default {
let that = this;
switch (item.value) {
case "B0":
// this.openDialog()
this.$alert('此功能正在开发', '提示', {
confirmButtonText: '确定',
})
this.openDialog()
// this.$alert('此功能正在开发', '提示', {
// confirmButtonText: '确定',
// })
break;
case "B1":
getWorkFlowImage(this.bsmSlsq, this.bestepid ? this.bestepid : '').then(res => {
......
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-01-23 09:57:51
* @LastEditTime: 2024-01-31 16:52:43
*/
import Vue from 'vue'
import { getPrintTemplateByCode } from "@/api/print";
......@@ -81,10 +81,7 @@ export default {
let that = this;
switch (item.value) {
case "B0":
// this.openDialog()
this.$alert('此功能正在开发', '提示', {
confirmButtonText: '确定',
})
this.openDialog()
break;
case "B1":
getWorkFlowImage(this.bsmSlsq, this.bestepid ? this.bestepid : '').then(res => {
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-01-23 10:25:51
* @LastEditTime: 2024-01-31 16:59:27
-->
<template>
<div class="container">
......@@ -290,6 +290,16 @@
if (p) {
this.ableOperation = this.tabList[a.index].ableOperation;
}
},
openDialog () {
let data = JSON.parse(localStorage.getItem('ywbl'))
let title = ''
if (data?.sqywmc) {
title = "申请业务:" + data?.sqywmc
} else {
title = "申请业务:" + data?.djywmc
}
this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'sqywInfo': data }, "90%", true)
}
}
}
......