address-client 1.4.3-2 → 1.4.3-20-chengran
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 +19 -38
- package/package.json +98 -97
- package/src/components/AddAreaMsg.vue +583 -0
- package/src/components/AddStreetOrPcd.vue +223 -0
- package/src/components/AddressAddAddress.vue +479 -479
- package/src/components/AddressList.vue +40 -8
- package/src/components/AddressManage.vue +6 -3
- package/src/components/AddressTree.vue +501 -501
- package/src/components/AreaManage.vue +81 -0
- package/src/components/AreaTree.vue +508 -501
- package/src/components/BatchOrders.vue +316 -0
- package/src/components/CityManage.vue +70 -0
- package/src/components/CompanyManage.vue +71 -0
- package/src/components/NewAddressInfo.vue +440 -432
- package/src/components/StreetList.vue +163 -0
- package/src/components/UserAddress.vue +91 -30
- package/src/main.js +0 -3
- package/static//345/234/260/345/235/200/345/257/274/345/205/245/346/250/241/346/235/277.xls +0 -0
- package/.gradle/3.5.1/file-changes/last-build.bin +0 -0
- package/.gradle/3.5.1/taskHistory/taskHistory.lock +0 -0
- package/.gradle/buildOutputCleanup/built.bin +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/.gradle/buildOutputCleanup/cache.properties.lock +0 -1
- package/src/components/Test.vue +0 -14
- package/yarn.lock +0 -7463
package/build/dev-server.js
CHANGED
|
@@ -10,52 +10,33 @@ var proxy = httpProxy.createProxyServer()
|
|
|
10
10
|
|
|
11
11
|
// Define HTTP proxies to your custom API backend
|
|
12
12
|
// https://github.com/chimurai/http-proxy-middleware
|
|
13
|
+
var str = 'http://117.34.91.57:8300/', str2= 'http://117.34.91.57:8300/'
|
|
13
14
|
var proxyTable = {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
target:
|
|
17
|
-
},
|
|
18
|
-
// 查找资源服务数据
|
|
19
|
-
'/rs/search': {
|
|
20
|
-
// target: 'http://192.168.50.202:8099'
|
|
21
|
-
// target: 'http://192.168.20.2:8081'
|
|
22
|
-
target: 'http://192.168.50.222:7000/ldap'
|
|
23
|
-
// target: 'http://192.168.20.191:8011'
|
|
15
|
+
|
|
16
|
+
'/rs/logic/getLogin': {
|
|
17
|
+
target: str2
|
|
24
18
|
},
|
|
25
|
-
// 用户登录服务地址
|
|
26
19
|
'/rs/user': {
|
|
27
|
-
|
|
28
|
-
// target: 'http://192.168.2.77:8081'
|
|
29
|
-
target: 'http://192.168.50.222:7000/ldap'
|
|
30
|
-
// target: 'http://192.168.20.191:8011'
|
|
20
|
+
target: str2
|
|
31
21
|
},
|
|
32
|
-
'/rs/
|
|
33
|
-
|
|
34
|
-
//target: 'http://127.0.0.1:8888/product'
|
|
35
|
-
target: 'http://192.168.50.222:8200/system'
|
|
36
|
-
// target: 'http://192.168.20.191:8011'
|
|
22
|
+
'/rs/db': {
|
|
23
|
+
target: str
|
|
37
24
|
},
|
|
38
|
-
'/rs/
|
|
39
|
-
|
|
40
|
-
//target: 'http://127.0.0.1:8888/product'
|
|
41
|
-
target: 'http://192.168.50.222:8200/system'
|
|
42
|
-
// target: 'http://192.168.20.191:8011'
|
|
25
|
+
'/rs/search': {
|
|
26
|
+
target: str2
|
|
43
27
|
},
|
|
44
|
-
'/rs/
|
|
45
|
-
target:
|
|
46
|
-
// target: 'http://127.0.0.1:8012'
|
|
47
|
-
// target: 'http://192.168.20.191:s8011'
|
|
28
|
+
'/rs/data': {
|
|
29
|
+
target: str2
|
|
48
30
|
},
|
|
49
|
-
'/
|
|
50
|
-
|
|
51
|
-
target: 'http://192.168.50.222:8300'
|
|
31
|
+
'/rs/logic/getInitData': {
|
|
32
|
+
target: str2
|
|
52
33
|
},
|
|
53
|
-
'/rs/
|
|
54
|
-
target:
|
|
34
|
+
'/rs/logic/getSaleInitData': {
|
|
35
|
+
target: str2
|
|
55
36
|
},
|
|
56
37
|
'/rs': {
|
|
57
|
-
|
|
58
|
-
target:
|
|
38
|
+
// target: 'http://192.168.50.199:8300'
|
|
39
|
+
target: str
|
|
59
40
|
}
|
|
60
41
|
}
|
|
61
42
|
|
|
@@ -132,10 +113,10 @@ app.use('/static', express.static('./static'))
|
|
|
132
113
|
// })
|
|
133
114
|
// })
|
|
134
115
|
|
|
135
|
-
module.exports = app.listen(
|
|
116
|
+
module.exports = app.listen(8087, function (err) {
|
|
136
117
|
if (err) {
|
|
137
118
|
console.log(err)
|
|
138
119
|
return
|
|
139
120
|
}
|
|
140
|
-
console.log('Listening at http://localhost:
|
|
121
|
+
console.log('Listening at http://localhost:8087')
|
|
141
122
|
})
|
package/package.json
CHANGED
|
@@ -1,97 +1,98 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "address-client",
|
|
3
|
-
"version": "1.4.3-
|
|
4
|
-
"description": "地址管理前台组件",
|
|
5
|
-
"author": "wanbochao",
|
|
6
|
-
"license": "ISC",
|
|
7
|
-
"main": "src/index.js",
|
|
8
|
-
"keywords": [
|
|
9
|
-
"sale"
|
|
10
|
-
],
|
|
11
|
-
"scripts": {
|
|
12
|
-
"unit": "karma start test/unit/karma.conf.js",
|
|
13
|
-
"example": "node build/example-server.js",
|
|
14
|
-
"dev": "node build/dev-server.js",
|
|
15
|
-
"lint": "eslint src/**.js test/e2e/**.js test/unit/specs/** build/**.js",
|
|
16
|
-
"build": "rimraf dist && mkdirp dist && ncp static dist/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prod.conf.js",
|
|
17
|
-
"e2e": "node test/e2e/runner.js",
|
|
18
|
-
"make": "rimraf dist-android && mkdirp dist-android && ncp static dist-android/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prodandroid.conf.js && publish",
|
|
19
|
-
"release": "bash build/release.sh"
|
|
20
|
-
},
|
|
21
|
-
"repository": {
|
|
22
|
-
"type": "git",
|
|
23
|
-
"url": "https://gitee.com/aote/address_management.git"
|
|
24
|
-
},
|
|
25
|
-
"dependencies": {
|
|
26
|
-
"less-loader": "^2.2.3",
|
|
27
|
-
"vue": "^1.0.17"
|
|
28
|
-
},
|
|
29
|
-
"devDependencies": {
|
|
30
|
-
"
|
|
31
|
-
"babel-
|
|
32
|
-
"babel-
|
|
33
|
-
"babel-
|
|
34
|
-
"babel-preset-
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"cross-
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"eslint
|
|
44
|
-
"eslint-
|
|
45
|
-
"eslint-
|
|
46
|
-
"eslint-
|
|
47
|
-
"eslint-plugin-
|
|
48
|
-
"eslint-plugin-
|
|
49
|
-
"eslint-plugin-
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"karma
|
|
64
|
-
"karma-
|
|
65
|
-
"karma-
|
|
66
|
-
"karma-
|
|
67
|
-
"karma-
|
|
68
|
-
"karma-
|
|
69
|
-
"karma-
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"sinon
|
|
79
|
-
"
|
|
80
|
-
"style
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"vue-
|
|
85
|
-
"vue-
|
|
86
|
-
"vue-loader": "^
|
|
87
|
-
"vue-
|
|
88
|
-
"vue-
|
|
89
|
-
"vue-
|
|
90
|
-
"vue-
|
|
91
|
-
"vue-
|
|
92
|
-
"
|
|
93
|
-
"webpack
|
|
94
|
-
"webpack-
|
|
95
|
-
"webpack-
|
|
96
|
-
|
|
97
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "address-client",
|
|
3
|
+
"version": "1.4.3-20-chengran",
|
|
4
|
+
"description": "地址管理前台组件",
|
|
5
|
+
"author": "wanbochao",
|
|
6
|
+
"license": "ISC",
|
|
7
|
+
"main": "src/index.js",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"sale"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"unit": "karma start test/unit/karma.conf.js",
|
|
13
|
+
"example": "node build/example-server.js",
|
|
14
|
+
"dev": "node build/dev-server.js",
|
|
15
|
+
"lint": "eslint src/**.js test/e2e/**.js test/unit/specs/** build/**.js",
|
|
16
|
+
"build": "rimraf dist && mkdirp dist && ncp static dist/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prod.conf.js",
|
|
17
|
+
"e2e": "node test/e2e/runner.js",
|
|
18
|
+
"make": "rimraf dist-android && mkdirp dist-android && ncp static dist-android/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prodandroid.conf.js && publish",
|
|
19
|
+
"release": "bash build/release.sh"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://gitee.com/aote/address_management.git"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"less-loader": "^2.2.3",
|
|
27
|
+
"vue": "^1.0.17"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"jsencrypt": "3.0.0-rc.1",
|
|
31
|
+
"babel-core": "^6.0.0",
|
|
32
|
+
"babel-loader": "^6.0.0",
|
|
33
|
+
"babel-plugin-transform-runtime": "^6.0.0",
|
|
34
|
+
"babel-preset-es2015": "^6.0.0",
|
|
35
|
+
"babel-preset-stage-2": "^6.0.0",
|
|
36
|
+
"chai": "^3.5.0",
|
|
37
|
+
"co": "^4.6.0",
|
|
38
|
+
"connect-history-api-fallback": "^1.1.0",
|
|
39
|
+
"cross-env": "^1.0.7",
|
|
40
|
+
"cross-spawn": "^2.1.5",
|
|
41
|
+
"css-loader": "^0.23.0",
|
|
42
|
+
"echarts": "^4.1.0",
|
|
43
|
+
"eslint": "^2.0.0",
|
|
44
|
+
"eslint-config-standard": "^5.1.0",
|
|
45
|
+
"eslint-friendly-formatter": "^1.2.2",
|
|
46
|
+
"eslint-loader": "^1.3.0",
|
|
47
|
+
"eslint-plugin-html": "^1.3.0",
|
|
48
|
+
"eslint-plugin-promise": "^1.0.8",
|
|
49
|
+
"eslint-plugin-standard": "^1.3.2",
|
|
50
|
+
"eslint-plugin-vue": "^0.1.1",
|
|
51
|
+
"eventsource-polyfill": "^0.9.6",
|
|
52
|
+
"express": "^4.13.3",
|
|
53
|
+
"extract-text-webpack-plugin": "^1.0.1",
|
|
54
|
+
"file-loader": "^0.8.4",
|
|
55
|
+
"function-bind": "^1.0.2",
|
|
56
|
+
"html-webpack-plugin": "^2.8.1",
|
|
57
|
+
"http-proxy-middleware": "^0.11.0",
|
|
58
|
+
"inject-loader": "^2.0.1",
|
|
59
|
+
"isparta-loader": "^2.0.0",
|
|
60
|
+
"jasmine-core": "^2.4.1",
|
|
61
|
+
"jquery": "^3.3.1",
|
|
62
|
+
"json-loader": "^0.5.4",
|
|
63
|
+
"karma": "^1.4.1",
|
|
64
|
+
"karma-chrome-launcher": "^2.2.0",
|
|
65
|
+
"karma-coverage": "^1.1.1",
|
|
66
|
+
"karma-mocha": "^1.3.0",
|
|
67
|
+
"karma-sinon-chai": "^1.3.1",
|
|
68
|
+
"karma-sourcemap-loader": "^0.3.7",
|
|
69
|
+
"karma-spec-reporter": "0.0.31",
|
|
70
|
+
"karma-webpack": "^2.0.2",
|
|
71
|
+
"less": "^2.7.3",
|
|
72
|
+
"mkdirp": "^0.5.1",
|
|
73
|
+
"mocha": "^3.2.0",
|
|
74
|
+
"ncp": "^2.0.0",
|
|
75
|
+
"rimraf": "^2.5.0",
|
|
76
|
+
"sale-client": "^1.2.5",
|
|
77
|
+
"selenium-server": "2.52.0",
|
|
78
|
+
"sinon": "^2.1.0",
|
|
79
|
+
"sinon-chai": "^2.8.0",
|
|
80
|
+
"style": "0.0.3",
|
|
81
|
+
"style-loader": "^0.20.3",
|
|
82
|
+
"system-clients": "^1.6.1",
|
|
83
|
+
"url-loader": "^0.5.7",
|
|
84
|
+
"vue-client": "1.20.76",
|
|
85
|
+
"vue-hot-reload-api": "^1.2.0",
|
|
86
|
+
"vue-html-loader": "^1.0.0",
|
|
87
|
+
"vue-loader": "^8.2.1",
|
|
88
|
+
"vue-resource": "^1.5.0",
|
|
89
|
+
"vue-router": "^0.7.13",
|
|
90
|
+
"vue-strap": "^1.0.9",
|
|
91
|
+
"vue-style-loader": "^1.0.0",
|
|
92
|
+
"vue-validator": "2.1.7",
|
|
93
|
+
"webpack": "^1.12.2",
|
|
94
|
+
"webpack-dev-middleware": "^1.4.0",
|
|
95
|
+
"webpack-hot-middleware": "^2.6.0",
|
|
96
|
+
"webpack-merge": "^0.8.3"
|
|
97
|
+
}
|
|
98
|
+
}
|