manage-client 4.1.135-tc → 4.1.135
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 +13 -13
- package/package.json +1 -1
- package/src/components/sale/businessquery/ChangeMeterQuery.vue +1 -1
- package/src/filiale/jinbin/exportConfig.js +1110 -0
- package/src/filiale/jinbin/sale/businessquery/ChargeQuery.vue +1372 -0
- package/src/filiale/jinbin/sale.js +7 -0
- package/src/filiale/liaoyuan/exportConfig.js +1 -1
- package/src/main.js +2 -5
package/build/dev-server.js
CHANGED
|
@@ -6,7 +6,7 @@ const proxyMiddleware = require('http-proxy-middleware')
|
|
|
6
6
|
const app = express()
|
|
7
7
|
const compiler = webpack(config)
|
|
8
8
|
|
|
9
|
-
const server = 'http://
|
|
9
|
+
const server = 'http://192.168.50.67:31567/'
|
|
10
10
|
const local = 'http://127.0.0.1:9026/'
|
|
11
11
|
const proxyTable = {
|
|
12
12
|
'/rs/logic/exportfile': {
|
|
@@ -16,22 +16,22 @@ const proxyTable = {
|
|
|
16
16
|
target: server
|
|
17
17
|
},
|
|
18
18
|
'/api/af-revenue/sql/': {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
target:
|
|
19
|
+
pathRewrite: {
|
|
20
|
+
'^/api/af-revenue': '/'
|
|
21
|
+
},
|
|
22
|
+
target: local
|
|
23
23
|
},
|
|
24
24
|
'/api/af-revenue/report/': {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
target:
|
|
25
|
+
pathRewrite: {
|
|
26
|
+
'^/api/af-revenue': '/'
|
|
27
|
+
},
|
|
28
|
+
target: local
|
|
29
29
|
},
|
|
30
30
|
'/api/af-revenue/logic': {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
target:
|
|
31
|
+
pathRewrite: {
|
|
32
|
+
'^/api/af-revenue': '/'
|
|
33
|
+
},
|
|
34
|
+
target: local
|
|
35
35
|
},
|
|
36
36
|
'/api': {
|
|
37
37
|
target: server
|
package/package.json
CHANGED
|
@@ -681,7 +681,7 @@
|
|
|
681
681
|
// },
|
|
682
682
|
getCondition() {
|
|
683
683
|
return {
|
|
684
|
-
condition: `${this.$refs.paged.$refs.cri.condition}` + this.orgCondtionStr,
|
|
684
|
+
condition: `${this.$refs.paged.$refs.cri.condition.replace(/f_zones/, "f_slice_area")}` + this.orgCondtionStr,
|
|
685
685
|
orderitem: this.orderitem?`${this.orderitem}`: " f_operate_date desc"}
|
|
686
686
|
},
|
|
687
687
|
getfield() {
|