This commit is contained in:
2021-04-30 23:30:38 +00:00
parent a62f2e666d
commit e16d367a66
4 changed files with 16 additions and 4 deletions

View File

@@ -352,16 +352,16 @@ export default {
this.value.postCity = this.value.city;
this.value.postRegion = this.value.region;
this.value.postCountry = this.value.country;
//flag form dirty
this.pvm.formState.dirty = true;
//flag form dirty
this.pvm.formState.dirty = true;
},
AddressCopyToPhysical() {
this.value.address = this.value.postAddress;
this.value.city = this.value.postCity;
this.value.region = this.value.postRegion;
this.value.country = this.value.postCountry;
//flag form dirty
this.pvm.formState.dirty = true;
//flag form dirty
this.pvm.formState.dirty = true;
},
AddressCopyPhysicalToClipBoard() {
let ret = "";

View File

@@ -1244,6 +1244,8 @@ export default {
vm.obj.postCity = vm.obj.city;
vm.obj.postRegion = vm.obj.region;
vm.obj.postCountry = vm.obj.country;
//flag form dirty
this.formState.dirty = true;
},
AddressCopyToPhysical() {
let vm = this;
@@ -1251,6 +1253,8 @@ export default {
vm.obj.city = vm.obj.postCity;
vm.obj.region = vm.obj.postRegion;
vm.obj.country = vm.obj.postCountry;
//flag form dirty
this.formState.dirty = true;
},
AddressCopyPhysicalToClipBoard() {
let vm = this;

View File

@@ -1148,6 +1148,8 @@ export default {
vm.obj.postCity = vm.obj.city;
vm.obj.postRegion = vm.obj.region;
vm.obj.postCountry = vm.obj.country;
//flag form dirty
this.formState.dirty = true;
},
AddressCopyToPhysical() {
let vm = this;
@@ -1155,6 +1157,8 @@ export default {
vm.obj.city = vm.obj.postCity;
vm.obj.region = vm.obj.postRegion;
vm.obj.country = vm.obj.postCountry;
//flag form dirty
this.formState.dirty = true;
},
AddressCopyPhysicalToClipBoard() {
let vm = this;

View File

@@ -941,6 +941,8 @@ export default {
vm.obj.postCity = vm.obj.city;
vm.obj.postRegion = vm.obj.region;
vm.obj.postCountry = vm.obj.country;
//flag form dirty
this.formState.dirty = true;
},
AddressCopyToPhysical() {
let vm = this;
@@ -948,6 +950,8 @@ export default {
vm.obj.city = vm.obj.postCity;
vm.obj.region = vm.obj.postRegion;
vm.obj.country = vm.obj.postCountry;
//flag form dirty
this.formState.dirty = true;
},
AddressCopyPhysicalToClipBoard() {
let vm = this;