7db600c6 by renchao@pashanhoo.com

style:添加不动产单元

1 parent 82aef50c
......@@ -81,7 +81,7 @@ export default {
let that = this;
switch (item.value) {
case "B0":
this.openDialog()
this.openDialog(item)
break;
case "B1":
getWorkFlowImage(this.bsmSlsq, this.bestepid ? this.bestepid : '').then(res => {
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-02-01 09:00:28
* @LastEditTime: 2024-02-01 13:36:56
-->
<template>
<div class="container">
......@@ -306,15 +306,9 @@
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, bsmSlsq: this.bsmSlsq, isworkFrame: true } }, "90%", true)
openDialog (item) {
console.log(item, 'item');
this.$popupDialog('添加不动产单元', "ywbl/ywsq/selectBdc", { 'sqywInfo': { ...item, isworkFrame: true } }, "90%", true)
}
}
}
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-27 17:23:24
* @LastEditTime: 2024-02-01 13:34:04
-->
<template>
<div class="from-clues">
......@@ -315,8 +315,6 @@
)
window.open(href, `workFrame${item.bsmSlsq}`)
}
localStorage.setItem("ywbl", JSON.stringify(item))
//从待办箱进入的调取任务领取接口
claimTask(item.bsmSlsq, item.bestepid);
} else {
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-11-16 14:09:32
* @LastEditTime: 2024-02-01 13:34:13
-->
<template>
<div class="from-clues">
......@@ -137,7 +137,6 @@
item.bsmQlxx +
"&viewtype=1"
);
localStorage.setItem('ywbl', JSON.stringify(item));
window.open(href, `urlname${item.bdcdyid}`);
},
......
......@@ -243,7 +243,6 @@
* @author: renchao
*/
dblclick (data, index, item) {
localStorage.setItem('ywbl', JSON.stringify(item));
this.selectSqywClick(data, index);
this.dialogClick();
},
......
<!--
* @Description: 选择不动产单元号
* @Autor: renchao
* @LastEditTime: 2024-02-01 09:01:30
* @LastEditTime: 2024-02-01 13:47:20
-->
<template>
<component :is="router" :sqywInfo="formData.sqywInfo" :isJump="formData.isJump ? formData.isJump : false"
......@@ -39,7 +39,6 @@
*/
loadView (view) {
console.log(view, 'viewviewview');
return (r) =>
require.ensure([], () => r(require(`./components/${view}.vue`)));
},
......