address-client 3.1.1 → 3.1.4
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/buildOutputCleanup/cache.properties +2 -2
- package/build/dev-server.js +125 -125
- package/package.json +1 -1
- package/src/components/CityList.vue +133 -133
- package/src/components/UserAddress.vue +3 -0
- package/src/filiale/WEINAN/AddAreaMsg.vue +656 -656
- package/src/filiale/tongchuan/CityList.vue +133 -133
- package/src/filiale/tongchuan/UserAddress.vue +824 -824
- package/src/filiale/tongchuan/sale.js +19 -19
- package/src/filiale/zhoukou/AddAreaMsg.vue +671 -0
- package/src/filiale/zhoukou/AddressList.vue +391 -391
- package/src/filiale/zhoukou/AddressManage.vue +114 -0
- package/src/filiale/zhoukou/AreaList.vue +317 -0
- package/src/filiale/zhoukou/AreaManage.vue +100 -0
- package/src/filiale/zhoukou/UserAddress.vue +928 -833
- package/src/filiale/zhoukou/sale.js +11 -1
- package/src/main.js +1 -1
- package/.gradle/3.5/file-changes/last-build.bin +0 -0
- 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
|
@@ -3,8 +3,18 @@ import Vue from "vue";
|
|
|
3
3
|
|
|
4
4
|
let specialComp = {
|
|
5
5
|
//地址管理父组件
|
|
6
|
+
//地址管理父组件
|
|
7
|
+
'address-manage': (resolve) =>{ require(['./AddressManage'], resolve) },
|
|
6
8
|
'user-address': (resolve) =>{ require(['./UserAddress'], resolve) },
|
|
7
|
-
'address-list': (resolve) =>{ require(['./AddressList'], resolve) }
|
|
9
|
+
'address-list': (resolve) =>{ require(['./AddressList'], resolve) },
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
//小区添加
|
|
13
|
+
'add-area-msg': (resolve) => { require(['./AddAreaMsg'], resolve) },
|
|
14
|
+
//小区列表
|
|
15
|
+
'area-list': (resolve) => { require(['./AreaList'], resolve) },
|
|
16
|
+
//小区管理(包含修改表具,小区的添加)
|
|
17
|
+
'area-manage': (resolve) => { require(['./AreaManage'], resolve) }
|
|
8
18
|
}
|
|
9
19
|
exports.specialComp = specialComp
|
|
10
20
|
|
package/src/main.js
CHANGED
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
package/AddressClient.iml
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module external.linked.project.id="AddressClient" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="3.0.11" type="JAVA_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
4
|
-
<exclude-output />
|
|
5
|
-
<content url="file://$MODULE_DIR$">
|
|
6
|
-
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
|
|
7
|
-
<excludeFolder url="file://$MODULE_DIR$/build" />
|
|
8
|
-
<excludeFolder url="file://$MODULE_DIR$/out" />
|
|
9
|
-
</content>
|
|
10
|
-
<orderEntry type="inheritedJdk" />
|
|
11
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
12
|
-
</component>
|
|
13
|
-
</module>
|