b9acc0e6 by renchao@pashanhoo.com

style:持证人

1 parent 755e008f
...@@ -291,7 +291,7 @@ ...@@ -291,7 +291,7 @@
291 this.ruleForm = res.result; 291 this.ruleForm = res.result;
292 this.ruleForm.qlrList.forEach((item, index) => { 292 this.ruleForm.qlrList.forEach((item, index) => {
293 if (item.sfczr == 1) { 293 if (item.sfczr == 1) {
294 this.ruleForm.czr = item.zjh 294 this.$set(this.ruleForm, "czr", item.zjh)
295 } 295 }
296 }) 296 })
297 this.ruleForm.diyaq.sfczjzhxz = "0"; 297 this.ruleForm.diyaq.sfczjzhxz = "0";
......
...@@ -280,7 +280,7 @@ ...@@ -280,7 +280,7 @@
280 } 280 }
281 this.ruleForm.qlrList.forEach((item, index) => { 281 this.ruleForm.qlrList.forEach((item, index) => {
282 if (item.sfczr == 1) { 282 if (item.sfczr == 1) {
283 this.ruleForm.czr = item.zjh 283 this.$set(this.ruleForm, "czr", item.zjh)
284 } 284 }
285 }) 285 })
286 //初始化发证方式,1:小证,2:大正 286 //初始化发证方式,1:小证,2:大正
......
...@@ -279,7 +279,7 @@ ...@@ -279,7 +279,7 @@
279 }; 279 };
280 this.ruleForm.qlrList.forEach((item, index) => { 280 this.ruleForm.qlrList.forEach((item, index) => {
281 if (item.sfczr == 1) { 281 if (item.sfczr == 1) {
282 this.ruleForm.czr = item.zjh 282 this.$set(this.ruleForm, "czr", item.zjh)
283 } 283 }
284 }) 284 })
285 //初始化发证方式,1:小证,2:大正 285 //初始化发证方式,1:小证,2:大正
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-04 16:40:27 4 * @LastEditTime: 2023-08-10 14:27:52
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -226,7 +226,7 @@ ...@@ -226,7 +226,7 @@
226 that.ruleForm = res.result; 226 that.ruleForm = res.result;
227 this.ruleForm.qlrList.forEach((item, index) => { 227 this.ruleForm.qlrList.forEach((item, index) => {
228 if (item.sfczr == 1) { 228 if (item.sfczr == 1) {
229 this.ruleForm.czr = item.zjh 229 this.$set(this.ruleForm, "czr", item.zjh)
230 } 230 }
231 }) 231 })
232 that.$endLoading(); 232 that.$endLoading();
......
...@@ -234,7 +234,7 @@ ...@@ -234,7 +234,7 @@
234 this.ruleForm = res.result; 234 this.ruleForm = res.result;
235 this.ruleForm.qlrList.forEach((item, index) => { 235 this.ruleForm.qlrList.forEach((item, index) => {
236 if (item.sfczr == 1) { 236 if (item.sfczr == 1) {
237 this.ruleForm.czr = item.zjh 237 this.$set(this.ruleForm, "czr", item.zjh)
238 } 238 }
239 }) 239 })
240 } 240 }
......
...@@ -360,7 +360,7 @@ ...@@ -360,7 +360,7 @@
360 that.ruleForm = res.result; 360 that.ruleForm = res.result;
361 this.ruleForm.qlrList.forEach((item, index) => { 361 this.ruleForm.qlrList.forEach((item, index) => {
362 if (item.sfczr == 1) { 362 if (item.sfczr == 1) {
363 this.ruleForm.czr = item.zjh 363 this.$set(this.ruleForm, "czr", item.zjh)
364 } 364 }
365 }) 365 })
366 that.$endLoading(); 366 that.$endLoading();
......
...@@ -231,7 +231,7 @@ ...@@ -231,7 +231,7 @@
231 this.ruleForm = res.result; 231 this.ruleForm = res.result;
232 this.ruleForm.qlrList.forEach((item, index) => { 232 this.ruleForm.qlrList.forEach((item, index) => {
233 if (item.sfczr == 1) { 233 if (item.sfczr == 1) {
234 this.ruleForm.czr = item.zjh 234 this.$set(this.ruleForm, "czr", item.zjh)
235 } 235 }
236 }) 236 })
237 this.$endLoading(); 237 this.$endLoading();
......
...@@ -200,7 +200,7 @@ ...@@ -200,7 +200,7 @@
200 this.ruleForm = res.result; 200 this.ruleForm = res.result;
201 this.ruleForm.qlrList.forEach((item, index) => { 201 this.ruleForm.qlrList.forEach((item, index) => {
202 if (item.sfczr == 1) { 202 if (item.sfczr == 1) {
203 this.ruleForm.czr = item.zjh 203 this.$set(this.ruleForm, "czr", item.zjh)
204 } 204 }
205 }) 205 })
206 } 206 }
......
...@@ -262,7 +262,7 @@ ...@@ -262,7 +262,7 @@
262 that.ruleForm = res.result; 262 that.ruleForm = res.result;
263 this.ruleForm.qlrList.forEach((item, index) => { 263 this.ruleForm.qlrList.forEach((item, index) => {
264 if (item.sfczr == 1) { 264 if (item.sfczr == 1) {
265 this.ruleForm.czr = item.zjh 265 this.$set(this.ruleForm, "czr", item.zjh)
266 } 266 }
267 }) 267 })
268 setTimeout(() => { 268 setTimeout(() => {
......
...@@ -276,7 +276,7 @@ ...@@ -276,7 +276,7 @@
276 this.ruleForm = res.result; 276 this.ruleForm = res.result;
277 this.ruleForm.qlrList.forEach((item, index) => { 277 this.ruleForm.qlrList.forEach((item, index) => {
278 if (item.sfczr == 1) { 278 if (item.sfczr == 1) {
279 this.ruleForm.czr = item.zjh 279 this.$set(this.ruleForm, "czr", item.zjh)
280 } 280 }
281 }) 281 })
282 this.$endLoading(); 282 this.$endLoading();
......