address-client 3.2.111-4 → 3.2.111-5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -707,8 +707,7 @@ export default {
|
|
|
707
707
|
data.f_pcd=this.findbyid(this.pcdslist,this.model.f_pcd_id).f_pcd
|
|
708
708
|
data.f_street=this.findbyid(this.streetslist,this.model.f_street_id).f_street
|
|
709
709
|
data.f_residential_area=this.findbyid(this.areaslist,this.model.f_residential_area_id).f_residential_area
|
|
710
|
-
data.f_address = data.
|
|
711
|
-
+ data.f_residential_area + data.f_area_period +
|
|
710
|
+
data.f_address = data.f_residential_area + data.f_area_period +
|
|
712
711
|
data.f_building + data.f_building_suffix
|
|
713
712
|
+ data.f_unit + data.f_unit_suffix
|
|
714
713
|
+ data.f_floor + data.f_floor_suffix
|
|
@@ -784,7 +783,7 @@ export default {
|
|
|
784
783
|
this.model.f_pcd=this.findbyid(this.pcdslist,this.model.f_pcd_id).f_pcd
|
|
785
784
|
this.model.f_street=this.findbyid(this.streetslist,this.model.f_street_id).f_street
|
|
786
785
|
this.model.f_residential_area=this.findbyid(this.areaslist,this.model.f_residential_area_id).f_residential_area
|
|
787
|
-
this.model.f_address = this.model.
|
|
786
|
+
this.model.f_address = this.model.f_residential_area + (this.model.f_area_period?this.model.f_area_period :'') + (this.model.f_building?this.model.f_building +this.model.f_building_suffix:'') + (this.model.f_unit?this.model.f_unit +this.model.f_unit_suffix:'') + (this.model.f_floor?this.model.f_floor +this.model.f_floor_suffix:'') + this.model.f_room + this.model.f_room_suffix
|
|
788
787
|
}
|
|
789
788
|
await this.$resetpost('api/af-revenue/logic/address_updateuseraddress', this.model)
|
|
790
789
|
},
|