manage-client 4.1.128 → 4.1.130
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 +11 -11
- package/package.json +1 -1
- package/src/components/SellReport/hongya/HyContrastBill.vue +2 -0
- package/src/components/sale/config/exportConfig.js +2 -0
- package/src/components/webmeter/gasStatistics/NewGasStatistics.vue +30 -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/qingjian/RecordInfoQuery.vue +2 -0
- package/src/filiale/qingjian/exportConfig.js +1 -0
- package/src/filiale/tongchuan/config/exportConfig.js +2 -2
- package/src/main.js +2 -3
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': {
|
|
@@ -17,21 +17,21 @@ const proxyTable = {
|
|
|
17
17
|
},
|
|
18
18
|
'/api/af-revenue/sql/': {
|
|
19
19
|
pathRewrite: {
|
|
20
|
-
'^/api/af-revenue': '/
|
|
20
|
+
'^/api/af-revenue': '/'
|
|
21
21
|
},
|
|
22
|
-
target:
|
|
22
|
+
target: local
|
|
23
|
+
},
|
|
24
|
+
'/api/af-revenue/report/': {
|
|
25
|
+
pathRewrite: {
|
|
26
|
+
'^/api/af-revenue': '/'
|
|
27
|
+
},
|
|
28
|
+
target: local
|
|
23
29
|
},
|
|
24
|
-
// '/api/af-revenue/report/': {
|
|
25
|
-
// pathRewrite: {
|
|
26
|
-
// '^/api/af-revenue': '/'
|
|
27
|
-
// },
|
|
28
|
-
// target: local
|
|
29
|
-
// },
|
|
30
30
|
'/api/af-revenue/logic': {
|
|
31
31
|
pathRewrite: {
|
|
32
|
-
'^/api/af-revenue': '/
|
|
32
|
+
'^/api/af-revenue': '/'
|
|
33
33
|
},
|
|
34
|
-
target:
|
|
34
|
+
target: local
|
|
35
35
|
},
|
|
36
36
|
'/api': {
|
|
37
37
|
target: server
|
package/package.json
CHANGED
|
@@ -153,6 +153,8 @@ export default {
|
|
|
153
153
|
ready () {
|
|
154
154
|
this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString() + ' 00:00:00'
|
|
155
155
|
this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString() + ' 23:59:59'
|
|
156
|
+
this.$refs.paged.$refs.criteria.model.startDate1 = this.$login.toStandardDateString() + ' 00:00:00'
|
|
157
|
+
this.$refs.paged.$refs.criteria.model.endDate1 = this.$login.toStandardDateString() + ' 23:59:59'
|
|
156
158
|
},
|
|
157
159
|
methods: {
|
|
158
160
|
searchData () {
|
|
@@ -1981,6 +1981,8 @@ export default {
|
|
|
1981
1981
|
'f_curbalance': '期末余额',
|
|
1982
1982
|
'f_gas_state': '用气状态',
|
|
1983
1983
|
'f_changetable_state': '是否换表',
|
|
1984
|
+
'f_valve_state': '阀门状态',
|
|
1985
|
+
'f_network_valve': '阀控状态',
|
|
1984
1986
|
'f_first_input_date': '首次抄表时间',
|
|
1985
1987
|
'f_input_date': '最后通讯日期'
|
|
1986
1988
|
},
|
|
@@ -182,6 +182,20 @@
|
|
|
182
182
|
condition="f_gasproperties = '{}'"
|
|
183
183
|
close-on-select></v-select>
|
|
184
184
|
</div>
|
|
185
|
+
<div class="col-sm-2 form-group" title="参数名称:【阀门状态查询用】">
|
|
186
|
+
<label class="font_normal_body">阀门状态</label>
|
|
187
|
+
<v-select :value.sync="model.f_valve_state" v-model="model.f_valve_state"
|
|
188
|
+
:options='$parent.$parent.valvestate' placeholder='请选择'
|
|
189
|
+
condition="f_valve_state = '{}'"
|
|
190
|
+
close-on-select></v-select>
|
|
191
|
+
</div>
|
|
192
|
+
<div class="col-sm-2 form-group" title="参数名称:【阀控状态查询用】">
|
|
193
|
+
<label class="font_normal_body">阀控状态</label>
|
|
194
|
+
<v-select :value.sync="model.f_network_valve" v-model="model.f_network_valve"
|
|
195
|
+
:options='$parent.$parent.networkvalve' placeholder='请选择'
|
|
196
|
+
condition="f_network_valve = '{}'"
|
|
197
|
+
close-on-select></v-select>
|
|
198
|
+
</div>
|
|
185
199
|
</div>
|
|
186
200
|
</div>
|
|
187
201
|
</criteria>
|
|
@@ -213,8 +227,14 @@
|
|
|
213
227
|
<th><nobr>期末余额</nobr></th>
|
|
214
228
|
<th><nobr>用气状态</nobr></th>
|
|
215
229
|
<th><nobr>是否换表</nobr></th>
|
|
230
|
+
|
|
231
|
+
<th><nobr>阀门状态</nobr></th>
|
|
232
|
+
<th><nobr>阀控状态</nobr></th>
|
|
233
|
+
|
|
216
234
|
<th><nobr>首次抄表时间</nobr></th>
|
|
217
235
|
<th><nobr>最后通讯日期</nobr></th>
|
|
236
|
+
|
|
237
|
+
|
|
218
238
|
</tr>
|
|
219
239
|
</template>
|
|
220
240
|
<template partial='body' partial='list'>
|
|
@@ -233,7 +253,6 @@
|
|
|
233
253
|
<th style="text-align:center"><nobr>{{row.f_meter_title}}</nobr></th>
|
|
234
254
|
<th style="text-align:center"><nobr>{{row.f_price_name}}</nobr></th>
|
|
235
255
|
|
|
236
|
-
|
|
237
256
|
<th style="text-align:center"><nobr>{{row.f_gasproperties}}</nobr></th>
|
|
238
257
|
|
|
239
258
|
|
|
@@ -247,6 +266,10 @@
|
|
|
247
266
|
<th style="text-align:center"><nobr>{{row.f_curbalance}}</nobr></th>
|
|
248
267
|
<th style="text-align:center"><nobr>{{row.f_gas_state}}</nobr></th>
|
|
249
268
|
<th style="text-align:center"><nobr>{{row.f_changetable_state}}</nobr></th>
|
|
269
|
+
|
|
270
|
+
<th style="text-align:center"><nobr>{{row.f_valve_state}}</nobr></th>
|
|
271
|
+
<th style="text-align:center"><nobr>{{row.f_network_valve}}</nobr></th>
|
|
272
|
+
|
|
250
273
|
<th style="text-align:center"><nobr>{{row.f_first_input_date}}</nobr></th>
|
|
251
274
|
<th style="text-align:center"><nobr>{{row.f_input_date}}</nobr></th>
|
|
252
275
|
</tr>
|
|
@@ -499,6 +522,12 @@
|
|
|
499
522
|
usertypes() {
|
|
500
523
|
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('用户类型')]
|
|
501
524
|
},
|
|
525
|
+
valvestate() {
|
|
526
|
+
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('阀门状态查询用')]
|
|
527
|
+
},
|
|
528
|
+
networkvalve() {
|
|
529
|
+
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('阀控状态查询用')]
|
|
530
|
+
},
|
|
502
531
|
gasproperties() {
|
|
503
532
|
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('用气性质')]
|
|
504
533
|
},
|