manage-client 4.1.89 → 4.1.90-linshi-yangchun
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 +145 -145
- package/package.json +1 -1
- package/src/components/sale/businessquery/cardGasStatistics.vue +6 -0
- package/src/components/sale/config/exportConfig.js +2824 -2821
- package/src/filiale/bayan/ManageMaterialUsageDetails.vue +20 -0
- package/src/filiale/bayan/ManageOtherCharge.vue +20 -1
- package/src/filiale/bayan/OtherChargeQuery.vue +18 -4
- package/src/filiale/xinjiangdexin/ChangeMeterQuery.vue +717 -0
- package/src/filiale/xinjiangdexin/config/DefaultPrint.js +6 -0
- package/src/filiale/xinjiangdexin/config/exportConfig.js +1 -1
- package/src/filiale/xinjiangdexin/sale.js +4 -1
- package/src/filiale/yangchun/NewGasStatistics.vue +5 -1
- package/src/filiale/jinbin/exportConfig.js +0 -1110
- package/src/filiale/jinbin/sale/businessquery/ChargeQuery.vue +0 -1372
- package/src/filiale/jinbin/sale.js +0 -7
package/build/dev-server.js
CHANGED
|
@@ -1,145 +1,145 @@
|
|
|
1
|
-
const express = require('express')
|
|
2
|
-
const webpack = require('webpack')
|
|
3
|
-
const config = require('./webpack.dev.conf')
|
|
4
|
-
const proxyMiddleware = require('http-proxy-middleware')
|
|
5
|
-
|
|
6
|
-
const app = express()
|
|
7
|
-
const compiler = webpack(config)
|
|
8
|
-
|
|
9
|
-
const server = 'http://
|
|
10
|
-
const local = 'http://
|
|
11
|
-
const proxyTable = {
|
|
12
|
-
'/rs/logic/exportfile': {
|
|
13
|
-
target: server
|
|
14
|
-
},
|
|
15
|
-
'/dataManage': {
|
|
16
|
-
target: server
|
|
17
|
-
},
|
|
18
|
-
'/api/af-revenue/sql/': {
|
|
19
|
-
pathRewrite: {
|
|
20
|
-
|
|
21
|
-
},
|
|
22
|
-
target: local
|
|
23
|
-
},
|
|
24
|
-
'/api/af-revenue/report/': {
|
|
25
|
-
pathRewrite: {
|
|
26
|
-
|
|
27
|
-
},
|
|
28
|
-
target: local
|
|
29
|
-
},
|
|
30
|
-
'/api/af-revenue/logic': {
|
|
31
|
-
pathRewrite: {
|
|
32
|
-
|
|
33
|
-
},
|
|
34
|
-
target: local
|
|
35
|
-
},
|
|
36
|
-
'/api': {
|
|
37
|
-
target: server
|
|
38
|
-
},
|
|
39
|
-
'/rs/sql/chargeQuery_by_gasproperties': {
|
|
40
|
-
target: server
|
|
41
|
-
},
|
|
42
|
-
'/rs/logic/chargeQuery_by_gasproperties_line': {
|
|
43
|
-
target: server
|
|
44
|
-
},
|
|
45
|
-
'/files': {
|
|
46
|
-
target: server
|
|
47
|
-
},
|
|
48
|
-
// 查找资源服务数据
|
|
49
|
-
'/rs/search': {
|
|
50
|
-
target: server
|
|
51
|
-
},
|
|
52
|
-
// 查找资源服务数据
|
|
53
|
-
'/rs/logic/getLogin': {
|
|
54
|
-
target: server
|
|
55
|
-
},
|
|
56
|
-
// 查找资源服务数据
|
|
57
|
-
'/rs/logic/getInitData': {
|
|
58
|
-
target: server
|
|
59
|
-
},
|
|
60
|
-
'/rs/logic/getSaleInitData': {
|
|
61
|
-
target: server
|
|
62
|
-
},
|
|
63
|
-
// 用户登录服务地址
|
|
64
|
-
'/rs/user': {
|
|
65
|
-
target: server
|
|
66
|
-
},
|
|
67
|
-
'/rs/path/getParams': {
|
|
68
|
-
target: server
|
|
69
|
-
},
|
|
70
|
-
'/rs/data': {
|
|
71
|
-
target: server
|
|
72
|
-
},
|
|
73
|
-
'/rs/license': {
|
|
74
|
-
target: server
|
|
75
|
-
},
|
|
76
|
-
'/rs/db': {
|
|
77
|
-
target: server
|
|
78
|
-
},
|
|
79
|
-
'/excel': {
|
|
80
|
-
target: server
|
|
81
|
-
},
|
|
82
|
-
'/rs/config': {
|
|
83
|
-
target: server
|
|
84
|
-
},
|
|
85
|
-
'/rs/sql/getLicenseById': {
|
|
86
|
-
target: server
|
|
87
|
-
},
|
|
88
|
-
'/rs/report': {
|
|
89
|
-
target: server
|
|
90
|
-
},
|
|
91
|
-
'/rs/vue': {
|
|
92
|
-
target: server
|
|
93
|
-
},
|
|
94
|
-
'/rs/file': {
|
|
95
|
-
target: server
|
|
96
|
-
},
|
|
97
|
-
'/rs/sql/singleTable': {
|
|
98
|
-
target: server
|
|
99
|
-
},
|
|
100
|
-
'/rs': {
|
|
101
|
-
target: server
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
const devMiddleware = require('webpack-dev-middleware')(compiler, {
|
|
106
|
-
publicPath: config.output.publicPath,
|
|
107
|
-
stats: {
|
|
108
|
-
colors: true,
|
|
109
|
-
chunks: false
|
|
110
|
-
}
|
|
111
|
-
})
|
|
112
|
-
|
|
113
|
-
const hotMiddleware = require('webpack-hot-middleware')(compiler)
|
|
114
|
-
// force page reload when html-webpack-plugin template changes
|
|
115
|
-
compiler.plugin('compilation', function (compilation) {
|
|
116
|
-
compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
|
|
117
|
-
hotMiddleware.publish({action: 'reload'})
|
|
118
|
-
cb()
|
|
119
|
-
})
|
|
120
|
-
})
|
|
121
|
-
|
|
122
|
-
// proxy api requests
|
|
123
|
-
Object.keys(proxyTable).forEach(function (context) {
|
|
124
|
-
let options = proxyTable[context]
|
|
125
|
-
if (typeof options === 'string') {
|
|
126
|
-
options = {target: options}
|
|
127
|
-
}
|
|
128
|
-
app.use(proxyMiddleware(context, options))
|
|
129
|
-
})
|
|
130
|
-
|
|
131
|
-
app.use(require('connect-history-api-fallback')())
|
|
132
|
-
|
|
133
|
-
app.use(devMiddleware)
|
|
134
|
-
|
|
135
|
-
app.use(hotMiddleware)
|
|
136
|
-
|
|
137
|
-
app.use('/static', express.static('./static'))
|
|
138
|
-
|
|
139
|
-
module.exports = app.listen(8015, function (err) {
|
|
140
|
-
if (err) {
|
|
141
|
-
console.log(err)
|
|
142
|
-
return
|
|
143
|
-
}
|
|
144
|
-
console.log('Listening at http://localhost:8015')
|
|
145
|
-
})
|
|
1
|
+
const express = require('express')
|
|
2
|
+
const webpack = require('webpack')
|
|
3
|
+
const config = require('./webpack.dev.conf')
|
|
4
|
+
const proxyMiddleware = require('http-proxy-middleware')
|
|
5
|
+
|
|
6
|
+
const app = express()
|
|
7
|
+
const compiler = webpack(config)
|
|
8
|
+
|
|
9
|
+
const server = 'http://222.83.114.229:31785/'
|
|
10
|
+
const local = 'http://222.83.114.229:31785/'
|
|
11
|
+
const proxyTable = {
|
|
12
|
+
'/rs/logic/exportfile': {
|
|
13
|
+
target: server
|
|
14
|
+
},
|
|
15
|
+
'/dataManage': {
|
|
16
|
+
target: server
|
|
17
|
+
},
|
|
18
|
+
'/api/af-revenue/sql/': {
|
|
19
|
+
// pathRewrite: {
|
|
20
|
+
// '^/api/af-revenue': '/'
|
|
21
|
+
// },
|
|
22
|
+
target: local
|
|
23
|
+
},
|
|
24
|
+
'/api/af-revenue/report/': {
|
|
25
|
+
// pathRewrite: {
|
|
26
|
+
// '^/api/af-revenue': '/'
|
|
27
|
+
// },
|
|
28
|
+
target: local
|
|
29
|
+
},
|
|
30
|
+
'/api/af-revenue/logic': {
|
|
31
|
+
// pathRewrite: {
|
|
32
|
+
// '^/api/af-revenue': '/'
|
|
33
|
+
// },
|
|
34
|
+
target: local
|
|
35
|
+
},
|
|
36
|
+
'/api': {
|
|
37
|
+
target: server
|
|
38
|
+
},
|
|
39
|
+
'/rs/sql/chargeQuery_by_gasproperties': {
|
|
40
|
+
target: server
|
|
41
|
+
},
|
|
42
|
+
'/rs/logic/chargeQuery_by_gasproperties_line': {
|
|
43
|
+
target: server
|
|
44
|
+
},
|
|
45
|
+
'/files': {
|
|
46
|
+
target: server
|
|
47
|
+
},
|
|
48
|
+
// 查找资源服务数据
|
|
49
|
+
'/rs/search': {
|
|
50
|
+
target: server
|
|
51
|
+
},
|
|
52
|
+
// 查找资源服务数据
|
|
53
|
+
'/rs/logic/getLogin': {
|
|
54
|
+
target: server
|
|
55
|
+
},
|
|
56
|
+
// 查找资源服务数据
|
|
57
|
+
'/rs/logic/getInitData': {
|
|
58
|
+
target: server
|
|
59
|
+
},
|
|
60
|
+
'/rs/logic/getSaleInitData': {
|
|
61
|
+
target: server
|
|
62
|
+
},
|
|
63
|
+
// 用户登录服务地址
|
|
64
|
+
'/rs/user': {
|
|
65
|
+
target: server
|
|
66
|
+
},
|
|
67
|
+
'/rs/path/getParams': {
|
|
68
|
+
target: server
|
|
69
|
+
},
|
|
70
|
+
'/rs/data': {
|
|
71
|
+
target: server
|
|
72
|
+
},
|
|
73
|
+
'/rs/license': {
|
|
74
|
+
target: server
|
|
75
|
+
},
|
|
76
|
+
'/rs/db': {
|
|
77
|
+
target: server
|
|
78
|
+
},
|
|
79
|
+
'/excel': {
|
|
80
|
+
target: server
|
|
81
|
+
},
|
|
82
|
+
'/rs/config': {
|
|
83
|
+
target: server
|
|
84
|
+
},
|
|
85
|
+
'/rs/sql/getLicenseById': {
|
|
86
|
+
target: server
|
|
87
|
+
},
|
|
88
|
+
'/rs/report': {
|
|
89
|
+
target: server
|
|
90
|
+
},
|
|
91
|
+
'/rs/vue': {
|
|
92
|
+
target: server
|
|
93
|
+
},
|
|
94
|
+
'/rs/file': {
|
|
95
|
+
target: server
|
|
96
|
+
},
|
|
97
|
+
'/rs/sql/singleTable': {
|
|
98
|
+
target: server
|
|
99
|
+
},
|
|
100
|
+
'/rs': {
|
|
101
|
+
target: server
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
const devMiddleware = require('webpack-dev-middleware')(compiler, {
|
|
106
|
+
publicPath: config.output.publicPath,
|
|
107
|
+
stats: {
|
|
108
|
+
colors: true,
|
|
109
|
+
chunks: false
|
|
110
|
+
}
|
|
111
|
+
})
|
|
112
|
+
|
|
113
|
+
const hotMiddleware = require('webpack-hot-middleware')(compiler)
|
|
114
|
+
// force page reload when html-webpack-plugin template changes
|
|
115
|
+
compiler.plugin('compilation', function (compilation) {
|
|
116
|
+
compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
|
|
117
|
+
hotMiddleware.publish({action: 'reload'})
|
|
118
|
+
cb()
|
|
119
|
+
})
|
|
120
|
+
})
|
|
121
|
+
|
|
122
|
+
// proxy api requests
|
|
123
|
+
Object.keys(proxyTable).forEach(function (context) {
|
|
124
|
+
let options = proxyTable[context]
|
|
125
|
+
if (typeof options === 'string') {
|
|
126
|
+
options = {target: options}
|
|
127
|
+
}
|
|
128
|
+
app.use(proxyMiddleware(context, options))
|
|
129
|
+
})
|
|
130
|
+
|
|
131
|
+
app.use(require('connect-history-api-fallback')())
|
|
132
|
+
|
|
133
|
+
app.use(devMiddleware)
|
|
134
|
+
|
|
135
|
+
app.use(hotMiddleware)
|
|
136
|
+
|
|
137
|
+
app.use('/static', express.static('./static'))
|
|
138
|
+
|
|
139
|
+
module.exports = app.listen(8015, function (err) {
|
|
140
|
+
if (err) {
|
|
141
|
+
console.log(err)
|
|
142
|
+
return
|
|
143
|
+
}
|
|
144
|
+
console.log('Listening at http://localhost:8015')
|
|
145
|
+
})
|
package/package.json
CHANGED
|
@@ -205,6 +205,7 @@
|
|
|
205
205
|
<th><nobr>用气性质</nobr></th>
|
|
206
206
|
<th><nobr>期初余量</nobr></th>
|
|
207
207
|
<th><nobr>期初余额</nobr></th>
|
|
208
|
+
<th><nobr>期初余额【公式】</nobr></th>
|
|
208
209
|
<th><nobr>起方</nobr></th>
|
|
209
210
|
<th><nobr>起方(液晶)</nobr></th>
|
|
210
211
|
<th><nobr>止方</nobr></th>
|
|
@@ -218,6 +219,8 @@
|
|
|
218
219
|
<th><nobr>期间充值金额</nobr></th>
|
|
219
220
|
<th><nobr>期间补气量</nobr></th>
|
|
220
221
|
<th><nobr>期间补气金额</nobr></th>
|
|
222
|
+
<th><nobr>期间换表补气量</nobr></th>
|
|
223
|
+
<th><nobr>期间换表补气金额</nobr></th>
|
|
221
224
|
<th><nobr>期末余量</nobr></th>
|
|
222
225
|
<th><nobr>期末余额</nobr></th>
|
|
223
226
|
<th><nobr>一阶剩余单价</nobr></th>
|
|
@@ -259,6 +262,7 @@
|
|
|
259
262
|
|
|
260
263
|
<th style="text-align:center"><nobr>{{row.f_last_gas}}</nobr></th>
|
|
261
264
|
<th style="text-align:center"><nobr>{{row.f_last_balance}}</nobr></th>
|
|
265
|
+
<th style="text-align:center"><nobr>{{row.f_last_balance_gongshi}}</nobr></th>
|
|
262
266
|
<th style="text-align:center"><nobr>{{row.f_last_tablebase}}</nobr></th>
|
|
263
267
|
<th style="text-align:center"><nobr>{{row.f_last_shengyu_gas}}</nobr></th>
|
|
264
268
|
<th style="text-align:center"><nobr>{{row.f_tablebase}}</nobr></th>
|
|
@@ -271,6 +275,8 @@
|
|
|
271
275
|
<th style="text-align:center"><nobr>{{row.f_collection}}</nobr></th>
|
|
272
276
|
<th style="text-align:center"><nobr>{{row.f_bq_f_pregas}}</nobr></th>
|
|
273
277
|
<th style="text-align:center"><nobr>{{row.f_bq_preamount}}</nobr></th>
|
|
278
|
+
<th style="text-align:center"><nobr>{{row.f_hbbq_pregas}}</nobr></th>
|
|
279
|
+
<th style="text-align:center"><nobr>{{row.f_hbbq_preamount}}</nobr></th>
|
|
274
280
|
<th style="text-align:center"><nobr>{{row.f_remain_gas}}</nobr></th>
|
|
275
281
|
<th style="text-align:center"><nobr>{{row.f_remain_curbalance}}</nobr></th>
|
|
276
282
|
<th style="text-align:center"><nobr>{{row.f_remain_stair1price}}</nobr></th>
|