address-client 3.0.24-78 → 3.0.24-aode
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/{5.2.1 → 5.5}/fileChanges/last-build.bin +0 -0
- package/.gradle/5.5/fileHashes/fileHashes.lock +0 -0
- package/.gradle/{5.2.1 → 5.5}/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/built.bin +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/.gradle/buildOutputCleanup/cache.properties.lock +1 -0
- package/CHANGELOG.md +0 -3
- package/build/dev-server.js +2 -2
- package/build/webpack.base.conf.js +2 -6
- package/examples/showAdd/App.vue +2 -2
- package/index.html +0 -4
- package/package.json +5 -6
- package/src/address.js +5 -11
- package/src/components/AddAreaMsg.vue +78 -148
- package/src/components/AddStreetOrPcd.vue +2 -79
- package/src/components/AddressList.vue +108 -182
- package/src/components/AddressManage.vue +1 -1
- package/src/components/AddressTree.vue +1 -1
- package/src/components/AreaList.vue +247 -317
- package/src/components/AreaManage.vue +18 -17
- package/src/components/CityManage.vue +1 -1
- package/src/components/NewAddressInfo.vue +1 -1
- package/src/components/StreetList.vue +26 -50
- package/src/components/UserAddress.vue +383 -509
- package/src/components/areauser/AreaUser.vue +233 -0
- package/.gradle/5.2.1/executionHistory/executionHistory.bin +0 -0
- package/.gradle/5.2.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/gradle/wrapper/gradle-wrapper.properties +0 -5
- package/gradlew +0 -172
- package/gradlew.bat +0 -84
- package/src/components/CityList.vue +0 -133
- package/src/filiale/WEINAN/AddAreaMsg.vue +0 -656
- package/src/filiale/WEINAN/AddressList.vue +0 -351
- package/src/filiale/WEINAN/AddressManage.vue +0 -122
- package/src/filiale/WEINAN/AreaList.vue +0 -275
- package/src/filiale/WEINAN/UserAddress.vue +0 -783
- package/src/filiale/WEINAN/sale.js +0 -16
- package/src/filiale/gaomi/AddressList.vue +0 -430
- package/src/filiale/gaomi/UserAddress.vue +0 -832
- package/src/filiale/gaomi/sale.js +0 -14
- package/src/filiale/gongyi/AddAreaMsg.vue +0 -640
- package/src/filiale/gongyi/AreaManage.vue +0 -100
- package/src/filiale/gongyi/UserAddress.vue +0 -751
- package/src/filiale/gongyi/sale.js +0 -14
- package/src/filiale/jingwei/UserAddress.vue +0 -764
- package/src/filiale/jingwei/sale.js +0 -12
- package/src/filiale/macheng/AddAreaMsg.vue +0 -635
- package/src/filiale/macheng/AddStreetOrPcd.vue +0 -231
- package/src/filiale/macheng/AddressList.vue +0 -306
- package/src/filiale/macheng/AreaList.vue +0 -279
- package/src/filiale/macheng/CityManage.vue +0 -76
- package/src/filiale/macheng/StreetList.vue +0 -186
- package/src/filiale/macheng/UserAddress.vue +0 -743
- package/src/filiale/macheng/sale.js +0 -17
- package/src/filiale/rongcheng/AddressList.vue +0 -363
- package/src/filiale/rongcheng/UserAddress.vue +0 -799
- package/src/filiale/rongcheng/sale.js +0 -11
- package/src/filiale/shaoguan/AddAreaMsg.vue +0 -631
- package/src/filiale/shaoguan/UserAddress.vue +0 -764
- package/src/filiale/shaoguan/sale.js +0 -11
- package/src/filiale/tongchuan/AddAreaMsg.vue +0 -635
- package/src/filiale/tongchuan/AddStreetOrPcd.vue +0 -308
- package/src/filiale/tongchuan/AddressList.vue +0 -379
- package/src/filiale/tongchuan/AreaList.vue +0 -315
- package/src/filiale/tongchuan/AreaManage.vue +0 -100
- package/src/filiale/tongchuan/CityList.vue +0 -133
- package/src/filiale/tongchuan/StreetList.vue +0 -208
- package/src/filiale/tongchuan/UserAddress.vue +0 -795
- package/src/filiale/tongchuan/sale.js +0 -19
- package/src/filiale/wuhai/UserAddress.vue +0 -795
- package/src/filiale/wuhai/sale.js +0 -12
- package/src/filiale/zhoukou/AddressList.vue +0 -391
- package/src/filiale/zhoukou/UserAddress.vue +0 -833
- package/src/filiale/zhoukou/sale.js +0 -13
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
// 添加小区管理
|
|
2
|
-
import Vue from "vue";
|
|
3
|
-
let specialComp = {
|
|
4
|
-
// 添加小区
|
|
5
|
-
'add-area-msg': (resolve) => { require(['./AddAreaMsg'], resolve) },
|
|
6
|
-
// 小区管理(包含修改表具,小区的添加)
|
|
7
|
-
'area-manage': (resolve) => { require(['./AreaManage'], resolve) },
|
|
8
|
-
'add-street-pcd': (resolve) =>{ require(['./AddStreetOrPcd'], resolve) },
|
|
9
|
-
'city-list': (resolve) =>{ require(['./CityList'], resolve) },
|
|
10
|
-
'user-address': (resolve) =>{ require(['./UserAddress'], resolve) },
|
|
11
|
-
'street-list': (resolve) =>{ require(['./StreetList'], resolve) },
|
|
12
|
-
'address-list': (resolve) =>{ require(['./AddressList'], resolve) },
|
|
13
|
-
'area-list': (resolve) =>{ require(['./AreaList'], resolve) }
|
|
14
|
-
}
|
|
15
|
-
exports.specialComp = specialComp
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|