Merge branch 'dev'
Showing
1 changed file
with
3 additions
and
3 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-16 16:40:38 | 4 | * @LastEditTime: 2023-08-16 16:45:42 |
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" |
... | @@ -133,7 +133,7 @@ | ... | @@ -133,7 +133,7 @@ |
133 | <el-row> | 133 | <el-row> |
134 | <el-col :span="8"> | 134 | <el-col :span="8"> |
135 | <el-form-item label="性别" prop="xb"> | 135 | <el-form-item label="性别" prop="xb"> |
136 | <el-select clearable v-model="ruleForm.xb" class="width100" placeholder="请选择"> | 136 | <el-select clearable v-model="ruleForm.xb" :disabled="!showButton" class="width100" placeholder="请选择"> |
137 | <el-option v-for="item in dictData['A43']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 137 | <el-option v-for="item in dictData['A43']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
138 | </el-option> | 138 | </el-option> |
139 | </el-select> | 139 | </el-select> |
... | @@ -141,7 +141,7 @@ | ... | @@ -141,7 +141,7 @@ |
141 | </el-col> | 141 | </el-col> |
142 | <el-col :span="8"> | 142 | <el-col :span="8"> |
143 | <el-form-item label="代理人证件号" prop="dlrzjh"> | 143 | <el-form-item label="代理人证件号" prop="dlrzjh"> |
144 | <el-input v-model="ruleForm.dlrzjh" maxlength="20"></el-input> | 144 | <el-input v-model="ruleForm.dlrzjh" :disabled="!showButton" maxlength="20"></el-input> |
145 | </el-form-item> | 145 | </el-form-item> |
146 | </el-col> | 146 | </el-col> |
147 | </el-row> | 147 | </el-row> | ... | ... |
-
Please register or sign in to post a comment