address-client 1.3.57 → 1.3.58-10
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 +9 -19
- package/build.gradle +14 -14
- package/package.json +4 -3
- package/src/components/AddAreaMsg.vue +564 -564
- package/src/components/AddStreetOrPcd.vue +235 -235
- package/src/components/AddressList.vue +226 -226
- package/src/components/AddressManage.vue +113 -113
- package/src/components/AreaList.vue +22 -11
- package/src/components/NewAddressInfo.vue +2 -1
- package/src/components/StreetList.vue +153 -151
- package/src/components/UserAddress.vue +641 -641
- package/.npmignore +0 -9
- package/build/.npmignore +0 -1
- package/yarn.lock +0 -7463
package/build/dev-server.js
CHANGED
|
@@ -12,43 +12,33 @@ var proxy = httpProxy.createProxyServer()
|
|
|
12
12
|
// https://github.com/chimurai/http-proxy-middleware
|
|
13
13
|
var proxyTable = {
|
|
14
14
|
'/images': {
|
|
15
|
-
|
|
16
|
-
target: 'http://127.0.0.1:8090/ldap'
|
|
15
|
+
target: 'http://192.168.50.32:9001'
|
|
17
16
|
},
|
|
18
17
|
// 查找资源服务数据
|
|
19
18
|
'/rs/search': {
|
|
20
|
-
|
|
21
|
-
// target: 'http://192.168.20.2:8081'
|
|
22
|
-
target: 'http://127.0.0.1:8090/ldap'
|
|
23
|
-
// target: 'http://192.168.20.191:8011'
|
|
19
|
+
target: 'http://192.168.50.32:9001'
|
|
24
20
|
},
|
|
25
21
|
// 用户登录服务地址
|
|
26
22
|
'/rs/user': {
|
|
27
|
-
|
|
28
|
-
// target: 'http://192.168.2.77:8081'
|
|
29
|
-
target: 'http://127.0.0.1:8090/ldap'
|
|
30
|
-
// target: 'http://192.168.20.191:8011'
|
|
23
|
+
target: 'http://192.168.50.32:9001'
|
|
31
24
|
},
|
|
32
25
|
'/rs/data': {
|
|
33
|
-
target: 'http://
|
|
26
|
+
target: 'http://192.168.50.32:9001'
|
|
34
27
|
},
|
|
35
28
|
'/rs/license': {
|
|
36
|
-
target: 'http://
|
|
29
|
+
target: 'http://192.168.50.32:9001'
|
|
37
30
|
},
|
|
38
31
|
'/rs/db': {
|
|
39
|
-
target: 'http://
|
|
40
|
-
// target: 'http://127.0.0.1:8012'
|
|
41
|
-
// target: 'http://192.168.20.191:s8011'
|
|
32
|
+
target: 'http://192.168.50.32:9001'
|
|
42
33
|
},
|
|
43
34
|
'/excel': {
|
|
44
|
-
|
|
45
|
-
target: 'http://192.168.50.222:8300'
|
|
35
|
+
target: 'http://192.168.50.32:9001'
|
|
46
36
|
},
|
|
47
37
|
'/rs/file': {
|
|
48
|
-
target: 'http://192.168.50.
|
|
38
|
+
target: 'http://192.168.50.32:9001'
|
|
49
39
|
},
|
|
50
40
|
'/rs': {
|
|
51
|
-
target: 'http://
|
|
41
|
+
target: 'http://192.168.50.32:9001'
|
|
52
42
|
}
|
|
53
43
|
}
|
|
54
44
|
|
package/build.gradle
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
buildscript {
|
|
2
|
-
repositories {
|
|
3
|
-
mavenCentral()
|
|
4
|
-
jcenter()
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
version = '1.3.57'
|
|
9
|
-
|
|
10
|
-
apply plugin: 'java'
|
|
11
|
-
task release(type:Exec) {
|
|
12
|
-
workingDir '.'
|
|
13
|
-
commandLine 'cmd', '/c', 'release.bat ' + version
|
|
14
|
-
}
|
|
1
|
+
buildscript {
|
|
2
|
+
repositories {
|
|
3
|
+
mavenCentral()
|
|
4
|
+
jcenter()
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
version = '1.3.57-1'
|
|
9
|
+
|
|
10
|
+
apply plugin: 'java'
|
|
11
|
+
task release(type:Exec) {
|
|
12
|
+
workingDir '.'
|
|
13
|
+
commandLine 'cmd', '/c', 'release.bat ' + version
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "address-client",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.58-10",
|
|
4
4
|
"description": "地址管理前台组件",
|
|
5
5
|
"author": "wanbochao",
|
|
6
6
|
"license": "ISC",
|
|
@@ -78,10 +78,11 @@
|
|
|
78
78
|
"sinon-chai": "^2.8.0",
|
|
79
79
|
"style": "0.0.3",
|
|
80
80
|
"style-loader": "^0.20.3",
|
|
81
|
-
"system-clients": "1.
|
|
81
|
+
"system-clients": "1.5.24-5",
|
|
82
82
|
"ldap-clients": "0.4.4",
|
|
83
83
|
"url-loader": "^0.5.7",
|
|
84
|
-
"vue-client": "1.
|
|
84
|
+
"vue-client": "1.19.228-1",
|
|
85
|
+
"crypto-js": "4.0.0",
|
|
85
86
|
"vue-hot-reload-api": "^1.2.0",
|
|
86
87
|
"vue-html-loader": "^1.0.0",
|
|
87
88
|
"vue-loader": "^8.2.1",
|