fb6e2ead by renchao@pashanhoo.com

Merge branch 'dev'

2 parents 7e76e54b b4339fec
1 <!-- 1 <!--
2 * @Description: 受理信息 2 * @Description: 受理信息
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-14 14:53:58 4 * @LastEditTime: 2023-08-14 15:51:52
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -122,7 +122,7 @@ ...@@ -122,7 +122,7 @@
122 </el-form-item> 122 </el-form-item>
123 </el-col> 123 </el-col>
124 124
125 <el-col :span="6" v-if="gyfs!=0"> 125 <el-col :span="6" v-if="ruleForm.sldyList[0].gyfs!=0">
126 <el-form-item label="是否分别持证:"> 126 <el-form-item label="是否分别持证:">
127 <el-radio-group 127 <el-radio-group
128 v-model="ruleForm.sldyList[0].sqfbcz" 128 v-model="ruleForm.sldyList[0].sqfbcz"
...@@ -133,7 +133,7 @@ ...@@ -133,7 +133,7 @@
133 </el-form-item> 133 </el-form-item>
134 </el-col> 134 </el-col>
135 <el-col 135 <el-col
136 :span="6" v-if="gyfs!=0"> 136 :span="6" v-if="ruleForm.sldyList[0].gyfs!=0">
137 <el-form-item label="持证人:"> 137 <el-form-item label="持证人:">
138 <el-select 138 <el-select
139 v-model="ruleForm.czr" 139 v-model="ruleForm.czr"
...@@ -153,7 +153,8 @@ ...@@ -153,7 +153,8 @@
153 <qlrCommonTable 153 <qlrCommonTable
154 @upDateQlrxxList="upDateQlrxxList" 154 @upDateQlrxxList="upDateQlrxxList"
155 :tableData="ruleForm.qlrList" 155 :tableData="ruleForm.qlrList"
156 :gyfs="gyfs" /> 156 :gyfs="ruleForm.sldyList[0].gyfs"
157 />
157 <div class="slxx_title title-block"> 158 <div class="slxx_title title-block">
158 登记原因 159 登记原因
159 <div class="triangle"></div> 160 <div class="triangle"></div>
......
...@@ -173,7 +173,6 @@ ...@@ -173,7 +173,6 @@
173 * @author: renchao 173 * @author: renchao
174 */ 174 */
175 qllxClick (index) { 175 qllxClick (index) {
176 console.log("业务", index);
177 this.btnDisabled = true; 176 this.btnDisabled = true;
178 this.sqywQllxList.forEach(item => { 177 this.sqywQllxList.forEach(item => {
179 if (item.check) item.check = false; 178 if (item.check) item.check = false;
...@@ -200,9 +199,9 @@ ...@@ -200,9 +199,9 @@
200 this.btnDisabled = false; 199 this.btnDisabled = false;
201 // this.djqxList = [] 200 // this.djqxList = []
202 } else { 201 } else {
202 this.getNextNode(data[index].bsmSqyw);
203 this.btnDisabled = true; 203 this.btnDisabled = true;
204 } 204 }
205 this.getNextNode(data[index].bsmSqyw);
206 }, 205 },
207 //获取下个节点类型数据 206 //获取下个节点类型数据
208 /** 207 /**
......