8a97c61d by renchao@pashanhoo.com

style:受理申请

1 parent 17a76300
1 <!-- 1 <!--
2 * @Description: 房屋多幢受理信息 2 * @Description: 房屋多幢受理信息
3 * @Autor: ssq 3 * @Autor: ssq
4 * @LastEditTime: 2023-08-17 13:46:30 4 * @LastEditTime: 2023-08-17 16:35:08
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -180,8 +180,8 @@ ...@@ -180,8 +180,8 @@
180 <el-form-item label="持证人:"> 180 <el-form-item label="持证人:">
181 <el-select v-model="ruleForm.czr" placeholder="持证人" :disabled="!viewEdit"> 181 <el-select v-model="ruleForm.czr" placeholder="持证人" :disabled="!viewEdit">
182 <el-option 182 <el-option
183 v-for="item in czrOptions" 183 v-for="(item,index) in czrOptions"
184 :key="item.zjh" 184 :key="index"
185 :label="item.sqrmc" 185 :label="item.sqrmc"
186 :value="item.zjh"></el-option> 186 :value="item.zjh"></el-option>
187 </el-select> 187 </el-select>
...@@ -255,12 +255,12 @@ ...@@ -255,12 +255,12 @@
255 ...res.result, 255 ...res.result,
256 ...res.result.qlxxdatas, 256 ...res.result.qlxxdatas,
257 }; 257 };
258 this.czrOptions = this.ruleForm.qlrList;
259 this.ruleForm.qlrList.forEach((item, index) => { 258 this.ruleForm.qlrList.forEach((item, index) => {
260 if (item.sfczr == 1) { 259 if (item.sfczr == 1) {
261 this.$set(this.ruleForm, "czr", item.zjh) 260 this.$set(this.ruleForm, "czr", item.zjh)
262 } 261 }
263 }) 262 })
263 this.czrOptions = this.ruleForm.qlrList;
264 } 264 }
265 }); 265 });
266 }, 266 },
......