sale-client 4.0.7-preview → 4.0.8-preview
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/fileHashes/fileHashes.lock +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +1 -1
- package/build/dev-server.js +10 -11
- package/package.json +1 -1
- package/src/filiale/xihu/MeterinfoTest.vue +1245 -0
- package/src/filiale/xihu/OverUseCharge.vue +440 -0
- package/src/filiale/xihu/TransferManage.vue +533 -0
- package/src/filiale/xihu/sale.js +6 -0
- package/src/main.js +1 -2
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Mon Sep 09 09:42:20 CST 2024
|
|
2
2
|
gradle.version=5.2.1
|
package/build/dev-server.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var path = require('path')
|
|
2
2
|
var checkVersion = require('./versionCheck.js')
|
|
3
3
|
checkVersion()
|
|
4
|
-
const [ serverRul, localUrl, v4Url ] = ['http://
|
|
4
|
+
const [ serverRul, localUrl, v4Url ] = ['http://192.168.50.4:8400/', 'http://localhost:8080', 'http://localhost:9026/']
|
|
5
5
|
var merge = require('webpack-merge')
|
|
6
6
|
var baseConfig = require('./webpack.dev.conf')
|
|
7
7
|
var devConfig = {
|
|
@@ -19,9 +19,11 @@ var devConfig = {
|
|
|
19
19
|
children: false // 不输出子模块构建信息
|
|
20
20
|
},
|
|
21
21
|
proxy: {
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
22
|
+
'/api/af-revenue': {
|
|
23
|
+
pathRewrite:{
|
|
24
|
+
'/api/af-revenue':'/rs'
|
|
25
|
+
},
|
|
26
|
+
target: 'http://localhost:8080/'
|
|
25
27
|
},
|
|
26
28
|
'/invoice/rs/logic/getInvoice': {
|
|
27
29
|
target: serverRul
|
|
@@ -35,6 +37,9 @@ var devConfig = {
|
|
|
35
37
|
'/rs/file': {
|
|
36
38
|
target: localUrl
|
|
37
39
|
},
|
|
40
|
+
'/api': {
|
|
41
|
+
target: 'http://192.168.50.67:31567'
|
|
42
|
+
},
|
|
38
43
|
'/webapps': {
|
|
39
44
|
target: serverRul
|
|
40
45
|
},
|
|
@@ -90,14 +95,8 @@ var devConfig = {
|
|
|
90
95
|
'/rs/logic/webHandReverse': {
|
|
91
96
|
target: 'http://localhost:8085'
|
|
92
97
|
},
|
|
93
|
-
// '/rs/logic': {
|
|
94
|
-
// target: localUrl
|
|
95
|
-
// },
|
|
96
98
|
'/rs/logic': {
|
|
97
|
-
|
|
98
|
-
'/rs/logic': '/logic'
|
|
99
|
-
},
|
|
100
|
-
target: 'http://61.163.123.47:30785/'
|
|
99
|
+
target: localUrl
|
|
101
100
|
},
|
|
102
101
|
'/rs/sql': {
|
|
103
102
|
target: localUrl
|