style:权利人信息
Showing
12 changed files
with
62 additions
and
42 deletions
| ... | @@ -231,7 +231,6 @@ export default { | ... | @@ -231,7 +231,6 @@ export default { |
| 231 | this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); | 231 | this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val)); |
| 232 | this.key++; | 232 | this.key++; |
| 233 | }, | 233 | }, |
| 234 | // 更新权利人信息 | ||
| 235 | /** | 234 | /** |
| 236 | * @description: 更新权利人信息 | 235 | * @description: 更新权利人信息 |
| 237 | * @param {*} val | 236 | * @param {*} val | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-10 16:33:09 | 4 | * @LastEditTime: 2023-08-14 10:52:06 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
| ... | @@ -349,6 +349,7 @@ | ... | @@ -349,6 +349,7 @@ |
| 349 | upDateQlrxxList (val) { | 349 | upDateQlrxxList (val) { |
| 350 | if (!_.isEqual(val, this.ruleForm.qlrList)) { | 350 | if (!_.isEqual(val, this.ruleForm.qlrList)) { |
| 351 | this.ruleForm.qlrList = _.cloneDeep(val); | 351 | this.ruleForm.qlrList = _.cloneDeep(val); |
| 352 | this.czrOptions = this.ruleForm.qlrList; | ||
| 352 | } | 353 | } |
| 353 | }, | 354 | }, |
| 354 | // 更新义务人信息 | 355 | // 更新义务人信息 | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: 房屋多幢受理信息 | 2 | * @Description: 房屋多幢受理信息 |
| 3 | * @Autor: ssq | 3 | * @Autor: ssq |
| 4 | * @LastEditTime: 2023-08-14 10:26:42 | 4 | * @LastEditTime: 2023-08-14 10:58:48 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="slxx"> | 7 | <div class="slxx"> |
| ... | @@ -125,23 +125,34 @@ | ... | @@ -125,23 +125,34 @@ |
| 125 | </el-radio-group> | 125 | </el-radio-group> |
| 126 | </el-form-item> | 126 | </el-form-item> |
| 127 | </el-col> | 127 | </el-col> |
| 128 | 128 | <el-col :span="5" v-show="ruleForm.sldy.gyfs != '0'"> | |
| 129 | <el-col :span="5" v-show="ruleForm.sldy.gyfs == '2'"> | ||
| 130 | <el-form-item label="是否分别持证:"> | 129 | <el-form-item label="是否分别持证:"> |
| 131 | <el-radio-group v-model="ruleForm.sldy.sqfbcz" :disabled="!ableOperation"> | 130 | <el-radio-group |
| 132 | <el-radio label="1">是</el-radio> | 131 | v-model="ruleForm.sldy.sqfbcz" |
| 133 | <el-radio label="0">否</el-radio> | 132 | :disabled="!ableOperation"> |
| 133 | <el-radio :label="1">是</el-radio> | ||
| 134 | <el-radio :label="0">否</el-radio> | ||
| 134 | </el-radio-group> | 135 | </el-radio-group> |
| 135 | </el-form-item> | 136 | </el-form-item> |
| 136 | </el-col> | 137 | </el-col> |
| 137 | <el-col :span="5" v-show="ruleForm.sldy.gyfs == '2'"> | 138 | <el-col |
| 139 | :span="5" | ||
| 140 | v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs != '0'"> | ||
| 138 | <el-form-item label="持证人:"> | 141 | <el-form-item label="持证人:"> |
| 139 | <el-select v-model="ruleForm.slsq.czr" placeholder="持证人" :disabled="!ableOperation"> | 142 | <el-select |
| 140 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 143 | v-model="ruleForm.czr" |
| 144 | placeholder="持证人" | ||
| 145 | :disabled="!ableOperation"> | ||
| 146 | <el-option | ||
| 147 | v-for="item in czrOptions" | ||
| 148 | :key="item.zjh" | ||
| 149 | :label="item.sqrmc" | ||
| 150 | :value="item.zjh"> | ||
| 141 | </el-option> | 151 | </el-option> |
| 142 | </el-select> | 152 | </el-select> |
| 143 | </el-form-item> | 153 | </el-form-item> |
| 144 | </el-col> | 154 | </el-col> |
| 155 | |||
| 145 | </el-row> | 156 | </el-row> |
| 146 | <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="!ableOperation" | 157 | <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="!ableOperation" |
| 147 | :gyfs="ruleForm.slsq.gyfs" /> | 158 | :gyfs="ruleForm.slsq.gyfs" /> | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: 受理信息 | 2 | * @Description: 受理信息 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-14 10:23:11 | 4 | * @LastEditTime: 2023-08-14 10:56:46 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="slxx"> | 7 | <div class="slxx"> |
| ... | @@ -187,15 +187,6 @@ | ... | @@ -187,15 +187,6 @@ |
| 187 | </el-radio-group> | 187 | </el-radio-group> |
| 188 | </el-form-item> | 188 | </el-form-item> |
| 189 | </el-col> | 189 | </el-col> |
| 190 | <!-- <el-col :span="5"> | ||
| 191 | <el-form-item label="发证方式:"> | ||
| 192 | <el-radio-group v-model="ruleForm.slsq.fzfs" :disabled="!ableOperation"> | ||
| 193 | <el-radio label="1">小证</el-radio> | ||
| 194 | <el-radio label="2">大证</el-radio> | ||
| 195 | </el-radio-group> | ||
| 196 | </el-form-item> | ||
| 197 | </el-col> --> | ||
| 198 | |||
| 199 | <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'"> | 190 | <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'"> |
| 200 | <el-form-item label="是否分别持证:"> | 191 | <el-form-item label="是否分别持证:"> |
| 201 | <el-radio-group | 192 | <el-radio-group | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: 受理信息 | 2 | * @Description: 受理信息 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-14 10:37:56 | 4 | * @LastEditTime: 2023-08-14 10:54:26 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="slxx"> | 7 | <div class="slxx"> |
| ... | @@ -251,8 +251,6 @@ | ... | @@ -251,8 +251,6 @@ |
| 251 | this.splicingFdcq2.zts = fdcq2List.length; | 251 | this.splicingFdcq2.zts = fdcq2List.length; |
| 252 | 252 | ||
| 253 | }, | 253 | }, |
| 254 | |||
| 255 | // 更新权利人信息 | ||
| 256 | /** | 254 | /** |
| 257 | * @description: 更新权利人信息 | 255 | * @description: 更新权利人信息 |
| 258 | * @param {*} val | 256 | * @param {*} val |
| ... | @@ -260,7 +258,7 @@ | ... | @@ -260,7 +258,7 @@ |
| 260 | */ | 258 | */ |
| 261 | upDateQlrxxList (val) { | 259 | upDateQlrxxList (val) { |
| 262 | this.ruleForm.qlrList = _.cloneDeep(val); | 260 | this.ruleForm.qlrList = _.cloneDeep(val); |
| 263 | 261 | this.czrOptions = this.ruleForm.qlrList; | |
| 264 | }, | 262 | }, |
| 265 | /** | 263 | /** |
| 266 | * @description: showCZInfo | 264 | * @description: showCZInfo | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: 房屋多幢受理信息 | 2 | * @Description: 房屋多幢受理信息 |
| 3 | * @Autor: ssq | 3 | * @Autor: ssq |
| 4 | * @LastEditTime: 2023-08-14 10:27:58 | 4 | * @LastEditTime: 2023-08-14 10:57:31 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="slxx"> | 7 | <div class="slxx"> |
| ... | @@ -172,16 +172,7 @@ | ... | @@ -172,16 +172,7 @@ |
| 172 | </el-radio-group> | 172 | </el-radio-group> |
| 173 | </el-form-item> | 173 | </el-form-item> |
| 174 | </el-col> | 174 | </el-col> |
| 175 | <!-- <el-col :span="5"> | 175 | <!-- <el-col :span="6" v-show="ruleForm.sldy.gyfs == '2'"> |
| 176 | <el-form-item label="发证方式:"> | ||
| 177 | <el-radio-group v-model="ruleForm.slsq.fzfs" :disabled="!ableOperation"> | ||
| 178 | <el-radio label="1">小证</el-radio> | ||
| 179 | <el-radio label="2">大证</el-radio> | ||
| 180 | </el-radio-group> | ||
| 181 | </el-form-item> | ||
| 182 | </el-col> --> | ||
| 183 | |||
| 184 | <el-col :span="6" v-show="ruleForm.sldy.gyfs == '2'"> | ||
| 185 | <el-form-item label="是否分别持证:"> | 176 | <el-form-item label="是否分别持证:"> |
| 186 | <el-radio-group | 177 | <el-radio-group |
| 187 | v-model="ruleForm.sldy.sqfbcz" | 178 | v-model="ruleForm.sldy.sqfbcz" |
| ... | @@ -205,6 +196,33 @@ | ... | @@ -205,6 +196,33 @@ |
| 205 | </el-option> | 196 | </el-option> |
| 206 | </el-select> | 197 | </el-select> |
| 207 | </el-form-item> | 198 | </el-form-item> |
| 199 | </el-col> --> | ||
| 200 | <el-col :span="6" v-show="ruleForm.sldy.gyfs != '0'"> | ||
| 201 | <el-form-item label="是否分别持证:"> | ||
| 202 | <el-radio-group | ||
| 203 | v-model="ruleForm.sldy.sqfbcz" | ||
| 204 | :disabled="!ableOperation"> | ||
| 205 | <el-radio :label="1">是</el-radio> | ||
| 206 | <el-radio :label="0">否</el-radio> | ||
| 207 | </el-radio-group> | ||
| 208 | </el-form-item> | ||
| 209 | </el-col> | ||
| 210 | <el-col | ||
| 211 | :span="6" | ||
| 212 | v-show="ruleForm.sldy.sqfbcz == '0' && ruleForm.sldy.gyfs != '0'"> | ||
| 213 | <el-form-item label="持证人:"> | ||
| 214 | <el-select | ||
| 215 | v-model="ruleForm.czr" | ||
| 216 | placeholder="持证人" | ||
| 217 | :disabled="!ableOperation"> | ||
| 218 | <el-option | ||
| 219 | v-for="(item,index) in czrOptions" | ||
| 220 | :key="index" | ||
| 221 | :label="item.sqrmc" | ||
| 222 | :value="item.zjh"> | ||
| 223 | </el-option> | ||
| 224 | </el-select> | ||
| 225 | </el-form-item> | ||
| 208 | </el-col> | 226 | </el-col> |
| 209 | </el-row> | 227 | </el-row> |
| 210 | <qlrCommonTable | 228 | <qlrCommonTable | ... | ... |
| ... | @@ -49,7 +49,7 @@ | ... | @@ -49,7 +49,7 @@ |
| 49 | <el-row :gutter="10"> | 49 | <el-row :gutter="10"> |
| 50 | <el-col :span="8"> | 50 | <el-col :span="8"> |
| 51 | <el-form-item label="宗地代码:"> | 51 | <el-form-item label="宗地代码:"> |
| 52 | <el-input disabled v-model="ruleForm.zdjbxx.zddm" ></el-input> | 52 | <el-input disabled v-model="ruleForm.zdjbxx.zddm"></el-input> |
| 53 | </el-form-item> | 53 | </el-form-item> |
| 54 | </el-col> | 54 | </el-col> |
| 55 | <el-col :span="8"> | 55 | <el-col :span="8"> |
| ... | @@ -317,6 +317,7 @@ | ... | @@ -317,6 +317,7 @@ |
| 317 | */ | 317 | */ |
| 318 | upDateQlrxxList (val) { | 318 | upDateQlrxxList (val) { |
| 319 | this.ruleForm.qlrList = _.cloneDeep(val) | 319 | this.ruleForm.qlrList = _.cloneDeep(val) |
| 320 | this.czrOptions = this.ruleForm.qlrList; | ||
| 320 | }, | 321 | }, |
| 321 | /** | 322 | /** |
| 322 | * @description: upDateJtcyList | 323 | * @description: upDateJtcyList | ... | ... |
| ... | @@ -318,6 +318,7 @@ | ... | @@ -318,6 +318,7 @@ |
| 318 | */ | 318 | */ |
| 319 | upDateQlrxxList (val) { | 319 | upDateQlrxxList (val) { |
| 320 | this.ruleForm.qlrList = _.cloneDeep(val) | 320 | this.ruleForm.qlrList = _.cloneDeep(val) |
| 321 | this.czrOptions = this.ruleForm.qlrList; | ||
| 321 | }, | 322 | }, |
| 322 | // 更新义务人信息 | 323 | // 更新义务人信息 |
| 323 | /** | 324 | /** | ... | ... |
| ... | @@ -266,6 +266,7 @@ | ... | @@ -266,6 +266,7 @@ |
| 266 | */ | 266 | */ |
| 267 | upDateQlrxxList (val) { | 267 | upDateQlrxxList (val) { |
| 268 | this.ruleForm.qlrList = _.cloneDeep(val); | 268 | this.ruleForm.qlrList = _.cloneDeep(val); |
| 269 | this.czrOptions = this.ruleForm.qlrList | ||
| 269 | }, | 270 | }, |
| 270 | // 更新权利人信息 | 271 | // 更新权利人信息 |
| 271 | /** | 272 | /** | ... | ... |
| ... | @@ -232,7 +232,6 @@ | ... | @@ -232,7 +232,6 @@ |
| 232 | } | 232 | } |
| 233 | }); | 233 | }); |
| 234 | }, | 234 | }, |
| 235 | // 更新权利人信息 | ||
| 236 | /** | 235 | /** |
| 237 | * @description: 更新权利人信息 | 236 | * @description: 更新权利人信息 |
| 238 | * @param {*} val | 237 | * @param {*} val |
| ... | @@ -240,8 +239,8 @@ | ... | @@ -240,8 +239,8 @@ |
| 240 | */ | 239 | */ |
| 241 | upDateQlrxxList (val) { | 240 | upDateQlrxxList (val) { |
| 242 | this.ruleForm.qlrList = _.cloneDeep(val); | 241 | this.ruleForm.qlrList = _.cloneDeep(val); |
| 242 | this.czrOptions = this.ruleForm.qlrList; | ||
| 243 | }, | 243 | }, |
| 244 | // 更新权利人信息 | ||
| 245 | /** | 244 | /** |
| 246 | * @description: 更新权利人信息 | 245 | * @description: 更新权利人信息 |
| 247 | * @param {*} val | 246 | * @param {*} val | ... | ... |
| ... | @@ -285,7 +285,6 @@ | ... | @@ -285,7 +285,6 @@ |
| 285 | }; | 285 | }; |
| 286 | }, | 286 | }, |
| 287 | methods: { | 287 | methods: { |
| 288 | // 更新权利人信息 | ||
| 289 | /** | 288 | /** |
| 290 | * @description: 更新权利人信息 | 289 | * @description: 更新权利人信息 |
| 291 | * @param {*} val | 290 | * @param {*} val |
| ... | @@ -293,10 +292,10 @@ | ... | @@ -293,10 +292,10 @@ |
| 293 | */ | 292 | */ |
| 294 | upDateQlrxxList (val) { | 293 | upDateQlrxxList (val) { |
| 295 | this.ruleForm.qlrList = _.cloneDeep(val); | 294 | this.ruleForm.qlrList = _.cloneDeep(val); |
| 295 | this.czrOptions = this.ruleForm.qlrList | ||
| 296 | }, | 296 | }, |
| 297 | // 更新权利人信息 | ||
| 298 | /** | 297 | /** |
| 299 | * @description: 更新权利人信息 | 298 | * @description: 义务人信息 |
| 300 | * @param {*} val | 299 | * @param {*} val |
| 301 | * @author: renchao | 300 | * @author: renchao |
| 302 | */ | 301 | */ | ... | ... |
| ... | @@ -280,6 +280,7 @@ | ... | @@ -280,6 +280,7 @@ |
| 280 | upDateQlrxxList (val) { | 280 | upDateQlrxxList (val) { |
| 281 | if (!_.isEqual(val, this.ruleForm.qlrList)) { | 281 | if (!_.isEqual(val, this.ruleForm.qlrList)) { |
| 282 | this.ruleForm.qlrList = _.cloneDeep(val); | 282 | this.ruleForm.qlrList = _.cloneDeep(val); |
| 283 | this.czrOptions = this.ruleForm.qlrList; | ||
| 283 | } | 284 | } |
| 284 | }, | 285 | }, |
| 285 | // 更新义务人信息 | 286 | // 更新义务人信息 | ... | ... |
-
Please register or sign in to post a comment