|
@@ -130,6 +130,13 @@
|
|
|
},
|
|
|
created() {
|
|
|
this.subForm = this.register_form_data;
|
|
|
+
|
|
|
+ if (this.person_data) {
|
|
|
+ this.subForm.name = this.subForm.name ? this.subForm.name : this.person_data.name;
|
|
|
+ this.subForm.telephone = this.subForm.telephone ? this.subForm.telephone : this.person_data.phone;
|
|
|
+ this.subForm.idCard = this.subForm.idCard ? this.subForm.idCard : this.person_data.idCard;
|
|
|
+ this.subForm.faceImageUrl = this.subForm.faceImageUrl ? this.subForm.faceImageUrl : this.person_data.faceImageUrl;
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
//微信选择图片
|