d9933c97 by renchao@pashanhoo.com

style:权利人编辑功能的完善

1 parent f4e42ae0
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-04 13:08:20 4 * @LastEditTime: 2023-08-04 13:29:47
5 --> 5 -->
6 <template> 6 <template>
7 <dialogBox title="申请人信息" width="60%" isMain v-model="myValue" :isFullscreen="false" @submitForm="submitForm" 7 <dialogBox title="申请人信息" width="60%" isMain v-model="myValue" :isFullscreen="false" @submitForm="submitForm"
...@@ -42,13 +42,11 @@ ...@@ -42,13 +42,11 @@
42 </el-form-item> 42 </el-form-item>
43 </el-col> 43 </el-col>
44 <el-col :span="8"> 44 <el-col :span="8">
45 <el-form-item label="性别" prop="xb"> 45 <el-form-item label="份数" prop="fs">
46 <el-select clearable v-model="ruleForm.xb" class="width100" placeholder="请选择"> 46 <el-input v-model="ruleForm.fs" maxlength="8" oninput="value=value.replace(/[^\d]/g,'')"></el-input>
47 <el-option v-for="item in dictData['A43']" :key="item.dcode" :label="item.dname" :value="item.dcode">
48 </el-option>
49 </el-select>
50 </el-form-item> 47 </el-form-item>
51 </el-col> 48 </el-col>
49
52 </el-row> 50 </el-row>
53 <el-row> 51 <el-row>
54 <el-col :span="8"> 52 <el-col :span="8">
...@@ -134,6 +132,14 @@ ...@@ -134,6 +132,14 @@
134 </el-row> 132 </el-row>
135 <el-row> 133 <el-row>
136 <el-col :span="8"> 134 <el-col :span="8">
135 <el-form-item label="性别" prop="xb">
136 <el-select clearable v-model="ruleForm.xb" class="width100" placeholder="请选择">
137 <el-option v-for="item in dictData['A43']" :key="item.dcode" :label="item.dname" :value="item.dcode">
138 </el-option>
139 </el-select>
140 </el-form-item>
141 </el-col>
142 <el-col :span="8">
137 <el-form-item label="代理人证件号" prop="dlrzjh"> 143 <el-form-item label="代理人证件号" prop="dlrzjh">
138 <el-input v-model="ruleForm.dlrzjh" maxlength="20"></el-input> 144 <el-input v-model="ruleForm.dlrzjh" maxlength="20"></el-input>
139 </el-form-item> 145 </el-form-item>
...@@ -163,6 +169,7 @@ ...@@ -163,6 +169,7 @@
163 zjh: "", 169 zjh: "",
164 dh: "", 170 dh: "",
165 xb: "", 171 xb: "",
172 fs: "",
166 frmc: "", 173 frmc: "",
167 gj: "", 174 gj: "",
168 hjszss: "", 175 hjszss: "",
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-04 13:11:21 4 * @LastEditTime: 2023-08-04 13:26:31
5 --> 5 -->
6 <template> 6 <template>
7 <div> 7 <div>
...@@ -141,7 +141,6 @@ ...@@ -141,7 +141,6 @@
141 }, 141 },
142 gyfs: { 142 gyfs: {
143 handler (newVal, oldValue) { 143 handler (newVal, oldValue) {
144 console.log(newVal, 'newValnewValnewValnewVal', this.tableData);
145 let dataList = _.cloneDeep(this.InformationTable) 144 let dataList = _.cloneDeep(this.InformationTable)
146 if (newVal == 0) { 145 if (newVal == 0) {
147 this.column = _.cloneDeep(dataList) 146 this.column = _.cloneDeep(dataList)
......