|
|
@@ -11184,6 +11184,7 @@ else{
|
|
|
case 2:
|
|
|
// this.selectedOptions1 = addressCode(this.ownerInfoform.addr);
|
|
|
this.ownerInfo = {...this.ownerInfoform}
|
|
|
+
|
|
|
break;
|
|
|
case 3:
|
|
|
// this.selectedOptions2 = addressCode(this.ownerInfoform.addr);
|
|
|
@@ -11199,17 +11200,13 @@ else{
|
|
|
this.businessform.property='0'
|
|
|
switch (this.userIndex) {
|
|
|
case 2:
|
|
|
- this.ownerInfo = JSON.parse(JSON.stringify(this.businessform));
|
|
|
+ this.ownerInfo ={...this.ownerInfo,...this.businessform}
|
|
|
break;
|
|
|
case 3:
|
|
|
- this.policyHolderInfo = JSON.parse(
|
|
|
- JSON.stringify(this.businessform)
|
|
|
- );
|
|
|
+ this.policyHolderInfo ={...this.policyHolderInfo,...this.businessform}
|
|
|
break;
|
|
|
case 4:
|
|
|
- this.insuredPersonInfo = JSON.parse(
|
|
|
- JSON.stringify(this.businessform)
|
|
|
- );
|
|
|
+ this.insuredPersonInfo ={...this.insuredPersonInfo,...this.businessform}
|
|
|
break;
|
|
|
}
|
|
|
}
|