address-client 3.2.19 → 3.2.22
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/.gradle/{3.5/file-changes → 4.4/fileChanges}/last-build.bin +0 -0
- package/.gradle/4.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/4.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/package.json +1 -1
- package/src/components/AddAreaMsg.vue +2 -2
- package/src/components/AreaList.vue +435 -430
- package/src/components/CityList.vue +133 -133
- package/src/components/CityManage.vue +76 -76
- package/src/filiale/WEINAN/AddAreaMsg.vue +656 -656
- package/src/filiale/WEINAN/AreaList.vue +390 -390
- package/src/filiale/macheng/AreaList.vue +279 -279
- package/src/filiale/qianneng/AddAreaMsg.vue +743 -0
- package/src/filiale/qianneng/AddStreetOrPcd.vue +318 -0
- package/src/filiale/qianneng/AreaList.vue +9 -9
- package/src/filiale/qianneng/UserAddress.vue +9 -2
- package/src/filiale/qianneng/sale.js +5 -1
- package/src/filiale/shanggao/AddAreaMsg.vue +12 -6
- package/src/filiale/shanggao/AddStreetOrPcd.vue +312 -312
- package/src/filiale/shanggao/AddressList.vue +613 -0
- package/src/filiale/shanggao/AreaList.vue +436 -431
- package/src/filiale/shanggao/BuildingList.vue +129 -129
- package/src/filiale/shanggao/StreetList.vue +240 -240
- package/src/filiale/shanggao/UserAddress.vue +953 -929
- package/src/filiale/shanggao/sale.js +1 -0
- package/src/filiale/tongchuan/AreaList.vue +315 -315
- package/src/filiale/tongchuan/CityList.vue +133 -133
- package/src/filiale/tongchuan/StreetList.vue +208 -208
- package/src/filiale/tongchuan/sale.js +19 -19
- package/src/main.js +22 -21
- package/.gradle/3.5/taskHistory/taskHistory.lock +0 -0
- package/.gradle/buildOutputCleanup/built.bin +0 -0
- package/.gradle/buildOutputCleanup/cache.properties.lock +0 -1
- package/AddressClient.iml +0 -13
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
2
|
-
gradle.version=
|
|
1
|
+
#Mon Dec 07 15:35:10 CST 2020
|
|
2
|
+
gradle.version=5.2.1
|
package/package.json
CHANGED
|
@@ -276,7 +276,7 @@
|
|
|
276
276
|
await self.$getConfig(self, 'UserArea')
|
|
277
277
|
console.log('原地址配置',self.config)
|
|
278
278
|
console.log('获取地址配置',self.config)
|
|
279
|
-
Object.assign(self.model, self.config)
|
|
279
|
+
// Object.assign(self.model, self.config)
|
|
280
280
|
await self.initdata()
|
|
281
281
|
await self.$LoadParams.loadMeterBook(self.f_filialeids)
|
|
282
282
|
await self.loadMeterBooks();
|
|
@@ -412,7 +412,7 @@
|
|
|
412
412
|
let redata = []
|
|
413
413
|
req.data.forEach((row) => {
|
|
414
414
|
redata.push({
|
|
415
|
-
label: row.f_residential_area,
|
|
415
|
+
label: '['+row.f_street+']'+row.f_residential_area,
|
|
416
416
|
value: row.id,
|
|
417
417
|
data: row,
|
|
418
418
|
id: row.id
|