Przeglądaj źródła

注册新身份自带信息

wgl 4 lat temu
rodzic
commit
d0cb0f530a

+ 7 - 0
src/projects/home/views/Register/Business/Step4.vue

@@ -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: {
 			//微信选择图片

+ 7 - 0
src/projects/home/views/Register/Pension/Step4.vue

@@ -138,6 +138,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: {
 			//微信选择图片

+ 7 - 0
src/projects/home/views/Register/Residence/Step4.vue

@@ -125,6 +125,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: {
 			//微信选择图片