8a97c61d by renchao@pashanhoo.com

style:受理申请

1 parent 17a76300
<!--
* @Description: 房屋多幢受理信息
* @Autor: ssq
* @LastEditTime: 2023-08-17 13:46:30
* @LastEditTime: 2023-08-17 16:35:08
-->
<template>
<div class="slxx">
......@@ -180,8 +180,8 @@
<el-form-item label="持证人:">
<el-select v-model="ruleForm.czr" placeholder="持证人" :disabled="!viewEdit">
<el-option
v-for="item in czrOptions"
:key="item.zjh"
v-for="(item,index) in czrOptions"
:key="index"
:label="item.sqrmc"
:value="item.zjh"></el-option>
</el-select>
......@@ -255,12 +255,12 @@
...res.result,
...res.result.qlxxdatas,
};
this.czrOptions = this.ruleForm.qlrList;
this.ruleForm.qlrList.forEach((item, index) => {
if (item.sfczr == 1) {
this.$set(this.ruleForm, "czr", item.zjh)
}
})
this.czrOptions = this.ruleForm.qlrList;
}
});
},
......