29929fe8 by renchao@pashanhoo.com

style:选择不动产单元

1 parent 9d3de639
/*
* @Description:workFramezu.vue组件的方法 头部按钮弹框方法
* @Autor: miaofang
* @LastEditTime: 2023-12-19 10:02:20
* @LastEditTime: 2024-01-31 17:09:45
*/
import { getPrintTemplateByCode } from "@/api/print";
import { getQllxByBdcdyid } from "@/api/djbDetail.js";
......@@ -87,9 +87,6 @@ export default {
switch (item.value) {
case "B0":
this.openDialog()
// this.$alert('此功能正在开发', '提示', {
// confirmButtonText: '确定',
// })
break;
case "B1":
getWorkFlowImage(this.bsmSlsq, this.bestepid ? this.bestepid : '').then(res => {
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-10 09:07:29
* @LastEditTime: 2024-01-31 17:10:22
-->
<template>
<div class="container">
......@@ -286,6 +286,16 @@
.catch((res) => {
console.log("错", res)
})
},
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)
}
}
}
......