address-client 3.2.88 → 3.2.89
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/build/dev-server.js +74 -74
- package/package.json +1 -1
- package/src/App.vue +16 -60
- package/src/address.js +65 -65
- package/src/components/AddStreetManageMsg.vue +204 -204
- package/src/components/AddStreetOrPcd.vue +361 -361
- package/src/components/AddressListLiuLi.vue +17 -17
- package/src/components/StreetManage.vue +68 -68
- package/src/components/StreetManageList.vue +225 -225
- package/src/filiale/WEINAN/AddAreaMsg.vue +745 -727
- package/src/filiale/WEINAN/AreaList.vue +396 -396
- package/src/filiale/WEINAN/AreaManage.vue +109 -109
- package/src/filiale/WEINAN/AreaUserList.vue +98 -98
- package/src/filiale/WEINAN/sale.js +18 -18
- package/src/filiale/qianneng/UserAddress.vue +1125 -1126
- package/src/filiale/rizhao/UserAddress.vue +3 -3
- package/src/main.js +1 -1
|
@@ -622,7 +622,7 @@
|
|
|
622
622
|
this.initpcds(` f_filialeid = '${this.f_filialeids}' and id ='${selectArea.f_pcd_id}' `)
|
|
623
623
|
this.model.slice_area = selectArea.f_slice_area
|
|
624
624
|
// 拼接地址
|
|
625
|
-
this.model.f_address = `${selectArea.
|
|
625
|
+
this.model.f_address = `${selectArea.f_residential_area}`
|
|
626
626
|
}
|
|
627
627
|
this.$nextTick(() => {
|
|
628
628
|
this.$resetValidation()
|
|
@@ -638,7 +638,7 @@
|
|
|
638
638
|
street=item.label
|
|
639
639
|
}
|
|
640
640
|
})
|
|
641
|
-
this.model.f_address = street
|
|
641
|
+
// this.model.f_address = street
|
|
642
642
|
}
|
|
643
643
|
if(val){
|
|
644
644
|
//那就把[小区]重新组织一下
|
|
@@ -774,7 +774,7 @@
|
|
|
774
774
|
this.model.f_pcd=this.findbyid(this.pcdslist,this.model.f_pcd_id).f_pcd
|
|
775
775
|
this.model.f_street=this.findbyid(this.streetslist,this.model.f_street_id).f_street
|
|
776
776
|
this.model.f_residential_area=this.findbyid(this.areaslist,this.model.f_residential_area_id).f_residential_area
|
|
777
|
-
this.model.f_address = this.model.
|
|
777
|
+
this.model.f_address = this.model.f_residential_area + (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
|
|
778
778
|
}
|
|
779
779
|
await this.$resetpost('rs/logic/address_updateuseraddress', this.model)
|
|
780
780
|
},
|