a289545f by renchao@pashanhoo.com

style:登记簿详情

1 parent efdff42e
...@@ -88,15 +88,8 @@ ...@@ -88,15 +88,8 @@
88 completeTask(this.queryForm).then((res) => { 88 completeTask(this.queryForm).then((res) => {
89 if (res.code === 200) { 89 if (res.code === 200) {
90 this.$message.success("转件成功"); 90 this.$message.success("转件成功");
91 // setTimeout(() => {
92 // window.opener = null;
93 // window.open("about:blank", "_self");
94 // window.close();
95 // this.$emit("input", false);
96 // }, 1000);
97 popupCacel(); 91 popupCacel();
98 setTimeout(() => { 92 setTimeout(() => {
99 // window.opener.location.reload(); //刷新父窗口
100 if (window.opener && window.opener.getBpageList) { 93 if (window.opener && window.opener.getBpageList) {
101 window.opener.getBpageList(); 94 window.opener.getBpageList();
102 } else { 95 } else {
...@@ -110,12 +103,6 @@ ...@@ -110,12 +103,6 @@
110 } 103 }
111 }); 104 });
112 }, 105 },
113 // add (val) {
114 // if (val != "") {
115 // this.shyj;
116 // }
117 // },
118
119 /** 106 /**
120 * @description: closeDialog 107 * @description: closeDialog
121 * @author: renchao 108 * @author: renchao
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-11-08 14:56:03 4 * @LastEditTime: 2023-11-09 08:45:33
5 --> 5 -->
6 <template> 6 <template>
7 <div class="content"> 7 <div class="content">
...@@ -126,6 +126,19 @@ ...@@ -126,6 +126,19 @@
126 this.isActive = "" 126 this.isActive = ""
127 this.titleActive = this.activeName 127 this.titleActive = this.activeName
128 } 128 }
129
130 this.$nextTick(function () {
131 this.defaultNode = getNode(
132 this.formData.qllx,
133 { linShi: 0, xianShi: 0, liShi: 0 },
134 res.result.bdcdylx || ""
135 );
136 this.sfqdata[0].children.forEach((item, index) => {
137 if (item.id == this.defaultNode.id) {
138 this.loadComponent(item.form);
139 }
140 });
141 });
129 } 142 }
130 }); 143 });
131 this.currentSelectProps = { 144 this.currentSelectProps = {
......