sale-client 4.0.90 → 4.0.91

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.
Files changed (26) hide show
  1. package/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
  2. package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
  3. package/.gradle/5.2.1/gc.properties +0 -0
  4. package/.gradle/8.5/fileChanges/last-build.bin +0 -0
  5. package/.gradle/8.5/gc.properties +0 -0
  6. package/build/dev-server.js +55 -55
  7. package/package.json +120 -120
  8. package/src/components/revenue/changeInsurance/InsuranceAdd.vue +418 -418
  9. package/src/components/revenue/comprehen/Maintenance/changeMeter/changemeterOperate.vue +301 -301
  10. package/src/components/revenue/comprehen/Maintenance/hand/handListMaintain.vue +641 -641
  11. package/src/components/revenue/comprehen/Maintenance/hand/handOperate.vue +469 -469
  12. package/src/filiale/foric-v3/MaterialsList.vue +235 -235
  13. package/src/filiale/huaran/FilesManage/FileUserFiles.vue +1114 -0
  14. package/src/filiale/huaran/FilesManage/MeterinfoTest.vue +48 -31
  15. package/src/filiale/huaran/FilesManage/UserGeneralInfoTest.vue +852 -0
  16. package/src/filiale/huaran/FilesManage/UserPaperInfoTest.vue +68 -0
  17. package/src/filiale/huaran/FilesManageNew/FileUserFiles.vue +749 -0
  18. package/src/filiale/huaran/FilesManageNew/UserGeneralInfoTest.vue +700 -0
  19. package/src/filiale/huaran/FilesManageNew/UserPaperInfoTest.vue +51 -0
  20. package/src/filiale/huaran/GasPrice.vue +527 -0
  21. package/src/filiale/huaran/sale.js +10 -0
  22. package/src/filiale/ronghao/InsuranceManage.vue +58 -58
  23. package/src/filiale/ronghao/Upload.vue +654 -654
  24. package/src/filiale/ronghao/sale.js +60 -60
  25. package/src/main.js +33 -33
  26. package/src/plugins/GetSaleParams.js +18 -1
File without changes
File without changes
@@ -1,55 +1,55 @@
1
- var path = require('path')
2
- var checkVersion = require('./versionCheck.js')
3
- checkVersion()
4
- const [ serverRul, localUrl ] = ['http://10.172.3.120:31467/', 'http://10.172.3.120:31467/']
5
- var merge = require('webpack-merge')
6
- var baseConfig = require('./webpack.dev.conf')
7
- var devConfig = {
8
- devServer: {
9
- contentBase: path.join(__dirname, 'src'),
10
- hot: true,
11
- publicPath: baseConfig.output.publicPath,
12
- historyApiFallback: true,
13
- host: '127.0.0.1',
14
- port: 8089,
15
- open: false,
16
- stats: {
17
- colors: false, // 配置控制台输出彩色日志
18
- chunks: false, // 不输出构建 chunk 信息
19
- children: false // 不输出子模块构建信息
20
- },
21
- proxy: {
22
- '/api/af-revenue/logic': {
23
- // pathRewrite: {
24
- // '/api/af-revenue/logic': '/logic'
25
- // },
26
- target: localUrl
27
- },
28
- '/api/af-revenue/file': {
29
- // pathRewrite: {
30
- // '/api/af-revenue/file': '/file'
31
- // },
32
- target: serverRul
33
- },
34
- '/weixin2/rs': {
35
- // pathRewrite: {
36
- // '/weixin2/rs': '/rs'
37
- // },
38
- target: localUrl
39
- },
40
- '/api/af-revenue/sql': {
41
- // pathRewrite: {
42
- // '/api/af-revenue/sql': '/sql'
43
- // },
44
- target: serverRul
45
- },
46
- '/api': {
47
- target: serverRul
48
- },
49
- '/rs': {
50
- target: serverRul
51
- }
52
- }
53
- }
54
- }
55
- module.exports = merge(baseConfig, devConfig)
1
+ var path = require('path')
2
+ var checkVersion = require('./versionCheck.js')
3
+ checkVersion()
4
+ const [ serverRul, localUrl ] = ['http://192.168.50.67:31467/', 'http://127.0.0.1:9026/']
5
+ var merge = require('webpack-merge')
6
+ var baseConfig = require('./webpack.dev.conf')
7
+ var devConfig = {
8
+ devServer: {
9
+ contentBase: path.join(__dirname, 'src'),
10
+ hot: true,
11
+ publicPath: baseConfig.output.publicPath,
12
+ historyApiFallback: true,
13
+ host: '127.0.0.1',
14
+ port: 8089,
15
+ open: false,
16
+ stats: {
17
+ colors: false, // 配置控制台输出彩色日志
18
+ chunks: false, // 不输出构建 chunk 信息
19
+ children: false // 不输出子模块构建信息
20
+ },
21
+ proxy: {
22
+ '/api/af-revenue/logic': {
23
+ pathRewrite: {
24
+ '/api/af-revenue/logic': '/logic'
25
+ },
26
+ target: localUrl
27
+ },
28
+ '/api/af-revenue/file': {
29
+ // pathRewrite: {
30
+ // '/api/af-revenue/file': '/file'
31
+ // },
32
+ target: localUrl
33
+ },
34
+ '/weixin2/rs':{
35
+ pathRewrite: {
36
+ '/weixin2/rs': '/rs'
37
+ },
38
+ target: 'http://410663id1ia4.vicp.fun'
39
+ },
40
+ '/api/af-revenue/sql': {
41
+ pathRewrite: {
42
+ '/api/af-revenue/sql': '/sql'
43
+ },
44
+ target: localUrl
45
+ },
46
+ '/api': {
47
+ target: serverRul
48
+ },
49
+ '/rs': {
50
+ target: serverRul
51
+ }
52
+ }
53
+ }
54
+ }
55
+ module.exports = merge(baseConfig, devConfig)
package/package.json CHANGED
@@ -1,120 +1,120 @@
1
- {
2
- "name": "sale-client",
3
- "version": "4.0.90",
4
- "description": "收费模块前台组件",
5
- "main": "src/index.js",
6
- "scripts": {
7
- "example": "node build/example-server.js",
8
- "dev": "webpack-dev-server --config ./build/dev-server.js",
9
- "lint": "eslint src/**.js test/e2e/**.js test/unit/specs/** build/**.js",
10
- "unit": "karma start test/unit/karma.conf.js",
11
- "build": "rimraf lib && mkdirp lib && cross-env webpack --progress --hide-modules --config build/webpack.prod.conf.js",
12
- "e2e": "node test/e2e/runner.js",
13
- "release": "bash build/release.sh"
14
- },
15
- "repository": {
16
- "type": "git",
17
- "url": "https://gitee.com/aote/product.git"
18
- },
19
- "dependencies": {
20
- "crypto-js": "^4.1.1",
21
- "examples": "^0.1.0",
22
- "js-file-download": "0.4.12",
23
- "less-loader": "^2.2.3",
24
- "qrcodejs2": "^0.0.2",
25
- "vue": "^1.0.17",
26
- "vue-client": "1.25.21",
27
- "webpack-dev-server": "^2.11.5",
28
- "yarn": "^1.22.10"
29
- },
30
- "devDependencies": {
31
- "address-client": "^3.2.111-fugou",
32
- "axios": "0.15.3",
33
- "babel-core": "^6.0.0",
34
- "babel-loader": "^6.0.0",
35
- "babel-plugin-transform-runtime": "^6.0.0",
36
- "babel-preset-es2015": "^6.0.0",
37
- "babel-preset-stage-2": "^6.0.0",
38
- "chai": "^3.5.0",
39
- "co": "^4.6.0",
40
- "compression-webpack-plugin": "1.1.2",
41
- "connect-history-api-fallback": "^1.1.0",
42
- "cross-env": "^1.0.7",
43
- "cross-spawn": "^2.1.5",
44
- "css-loader": "^0.23.0",
45
- "echarts": "^4.1.0",
46
- "eslint": "^3.19.0",
47
- "eslint-config-standard": "^10.2.1",
48
- "eslint-friendly-formatter": "^3.0.0",
49
- "eslint-loader": "^1.7.1",
50
- "eslint-plugin-html": "^3.0.0",
51
- "eslint-plugin-import": "^2.7.0",
52
- "eslint-plugin-node": "^5.2.0",
53
- "eslint-plugin-promise": "^3.4.0",
54
- "eslint-plugin-standard": "^3.0.1",
55
- "eventsource-polyfill": "^0.9.6",
56
- "express": "^4.13.3",
57
- "extract-text-webpack-plugin": "^3.0.2",
58
- "file-loader": "^0.8.4",
59
- "filemanager-webpack-plugin": "^2.0.5",
60
- "function-bind": "^1.0.2",
61
- "html-webpack-plugin": "^2.8.1",
62
- "http-proxy-middleware": "^0.11.0",
63
- "inject-loader": "^2.0.1",
64
- "isparta-loader": "^2.0.0",
65
- "jasmine-core": "^2.4.1",
66
- "jquery": "^3.3.1",
67
- "jsencrypt": "3.0.0-rc.1",
68
- "json-loader": "^0.5.4",
69
- "karma": "^1.4.1",
70
- "karma-chrome-launcher": "^2.2.0",
71
- "karma-coverage": "^1.1.1",
72
- "karma-mocha": "^1.3.0",
73
- "karma-sinon-chai": "^1.3.1",
74
- "karma-sourcemap-loader": "^0.3.7",
75
- "karma-spec-reporter": "0.0.31",
76
- "karma-webpack": "^2.0.2",
77
- "ldap-clients": "3.0.96",
78
- "less": "^2.7.3",
79
- "manage-client": "3.1.8-88",
80
- "mkdirp": "^0.5.1",
81
- "mocha": "^3.2.0",
82
- "moment": "2.24.0",
83
- "ncp": "^2.0.0",
84
- "nightwatch": "^0.8.18",
85
- "qrcodejs2": "0.0.2",
86
- "rimraf": "^2.5.0",
87
- "selenium-server": "2.52.0",
88
- "sinon": "^2.1.0",
89
- "sinon-chai": "^2.8.0",
90
- "style": "0.0.3",
91
- "style-loader": "^0.20.3",
92
- "system-clients": "3.3.2",
93
- "terser-webpack-plugin-legacy": "^1.2.5",
94
- "url-loader": "^0.5.7",
95
- "vue-clipboard2": "0.3.1",
96
- "vue-hot-reload-api": "^1.2.0",
97
- "vue-html-loader": "^1.0.0",
98
- "vue-loader": "^8.2.1",
99
- "vue-resource": "^1.5.0",
100
- "vue-router": "^0.7.13",
101
- "vue-strap": "^1.0.9",
102
- "vue-style-loader": "^1.0.0",
103
- "vue-validator": "2.1.7",
104
- "webpack": "^3.12.0",
105
- "webpack-dev-middleware": "^1.4.0",
106
- "webpack-hot-middleware": "^2.6.0",
107
- "webpack-merge": "^0.8.3",
108
- "webpack-parallel-uglify-plugin": "^1.0.0",
109
- "weixin-js-sdk": "^1.2.0"
110
- },
111
- "keywords": [
112
- "selling-clients"
113
- ],
114
- "author": "张桥",
115
- "license": "ISC",
116
- "directories": {
117
- "example": "examples",
118
- "test": "test"
119
- }
120
- }
1
+ {
2
+ "name": "sale-client",
3
+ "version": "4.0.91",
4
+ "description": "收费模块前台组件",
5
+ "main": "src/index.js",
6
+ "scripts": {
7
+ "example": "node build/example-server.js",
8
+ "dev": "webpack-dev-server --config ./build/dev-server.js",
9
+ "lint": "eslint src/**.js test/e2e/**.js test/unit/specs/** build/**.js",
10
+ "unit": "karma start test/unit/karma.conf.js",
11
+ "build": "rimraf lib && mkdirp lib && cross-env webpack --progress --hide-modules --config build/webpack.prod.conf.js",
12
+ "e2e": "node test/e2e/runner.js",
13
+ "release": "bash build/release.sh"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://gitee.com/aote/product.git"
18
+ },
19
+ "dependencies": {
20
+ "crypto-js": "^4.1.1",
21
+ "examples": "^0.1.0",
22
+ "js-file-download": "0.4.12",
23
+ "less-loader": "^2.2.3",
24
+ "qrcodejs2": "^0.0.2",
25
+ "vue": "^1.0.17",
26
+ "vue-client": "1.25.21",
27
+ "webpack-dev-server": "^2.11.5",
28
+ "yarn": "^1.22.10"
29
+ },
30
+ "devDependencies": {
31
+ "address-client": "^3.2.111-fugou",
32
+ "axios": "0.15.3",
33
+ "babel-core": "^6.0.0",
34
+ "babel-loader": "^6.0.0",
35
+ "babel-plugin-transform-runtime": "^6.0.0",
36
+ "babel-preset-es2015": "^6.0.0",
37
+ "babel-preset-stage-2": "^6.0.0",
38
+ "chai": "^3.5.0",
39
+ "co": "^4.6.0",
40
+ "compression-webpack-plugin": "1.1.2",
41
+ "connect-history-api-fallback": "^1.1.0",
42
+ "cross-env": "^1.0.7",
43
+ "cross-spawn": "^2.1.5",
44
+ "css-loader": "^0.23.0",
45
+ "echarts": "^4.1.0",
46
+ "eslint": "^3.19.0",
47
+ "eslint-config-standard": "^10.2.1",
48
+ "eslint-friendly-formatter": "^3.0.0",
49
+ "eslint-loader": "^1.7.1",
50
+ "eslint-plugin-html": "^3.0.0",
51
+ "eslint-plugin-import": "^2.7.0",
52
+ "eslint-plugin-node": "^5.2.0",
53
+ "eslint-plugin-promise": "^3.4.0",
54
+ "eslint-plugin-standard": "^3.0.1",
55
+ "eventsource-polyfill": "^0.9.6",
56
+ "express": "^4.13.3",
57
+ "extract-text-webpack-plugin": "^3.0.2",
58
+ "file-loader": "^0.8.4",
59
+ "filemanager-webpack-plugin": "^2.0.5",
60
+ "function-bind": "^1.0.2",
61
+ "html-webpack-plugin": "^2.8.1",
62
+ "http-proxy-middleware": "^0.11.0",
63
+ "inject-loader": "^2.0.1",
64
+ "isparta-loader": "^2.0.0",
65
+ "jasmine-core": "^2.4.1",
66
+ "jquery": "^3.3.1",
67
+ "jsencrypt": "3.0.0-rc.1",
68
+ "json-loader": "^0.5.4",
69
+ "karma": "^1.4.1",
70
+ "karma-chrome-launcher": "^2.2.0",
71
+ "karma-coverage": "^1.1.1",
72
+ "karma-mocha": "^1.3.0",
73
+ "karma-sinon-chai": "^1.3.1",
74
+ "karma-sourcemap-loader": "^0.3.7",
75
+ "karma-spec-reporter": "0.0.31",
76
+ "karma-webpack": "^2.0.2",
77
+ "ldap-clients": "3.0.96",
78
+ "less": "^2.7.3",
79
+ "manage-client": "3.1.8-88",
80
+ "mkdirp": "^0.5.1",
81
+ "mocha": "^3.2.0",
82
+ "moment": "2.24.0",
83
+ "ncp": "^2.0.0",
84
+ "nightwatch": "^0.8.18",
85
+ "qrcodejs2": "0.0.2",
86
+ "rimraf": "^2.5.0",
87
+ "selenium-server": "2.52.0",
88
+ "sinon": "^2.1.0",
89
+ "sinon-chai": "^2.8.0",
90
+ "style": "0.0.3",
91
+ "style-loader": "^0.20.3",
92
+ "system-clients": "3.3.2",
93
+ "terser-webpack-plugin-legacy": "^1.2.5",
94
+ "url-loader": "^0.5.7",
95
+ "vue-clipboard2": "0.3.1",
96
+ "vue-hot-reload-api": "^1.2.0",
97
+ "vue-html-loader": "^1.0.0",
98
+ "vue-loader": "^8.2.1",
99
+ "vue-resource": "^1.5.0",
100
+ "vue-router": "^0.7.13",
101
+ "vue-strap": "^1.0.9",
102
+ "vue-style-loader": "^1.0.0",
103
+ "vue-validator": "2.1.7",
104
+ "webpack": "^3.12.0",
105
+ "webpack-dev-middleware": "^1.4.0",
106
+ "webpack-hot-middleware": "^2.6.0",
107
+ "webpack-merge": "^0.8.3",
108
+ "webpack-parallel-uglify-plugin": "^1.0.0",
109
+ "weixin-js-sdk": "^1.2.0"
110
+ },
111
+ "keywords": [
112
+ "selling-clients"
113
+ ],
114
+ "author": "张桥",
115
+ "license": "ISC",
116
+ "directories": {
117
+ "example": "examples",
118
+ "test": "test"
119
+ }
120
+ }