manage-client 3.3.268 → 3.3.269
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/package.json +1 -1
- package/src/components/SellReport/wensu/GongDan.vue +202 -0
- package/src/filiale/fugou/ChargeQuery.vue +1441 -0
- package/src/filiale/fugou/sale.js +4 -0
- package/src/filiale/wuhai/UserGasAll.vue +27 -0
- package/src/filiale/yuncheng/WebHandplanQuery.vue +1011 -0
- package/src/filiale/yuncheng/sale.js +4 -0
- package/src/reportManage.js +5 -1
|
@@ -4,4 +4,8 @@ export default function () {
|
|
|
4
4
|
// 综合档案信息查询
|
|
5
5
|
Vue.component('record-info-query', (resolve) => { require(['./RecordInfoQuery'], resolve) })
|
|
6
6
|
Vue.component('user-query', (resolve) => { require(['./UserQuery'], resolve) })
|
|
7
|
+
// 收费查询
|
|
8
|
+
Vue.component('charge-query', (resolve) => {
|
|
9
|
+
require(['./ChargeQuery'], resolve)
|
|
10
|
+
})
|
|
7
11
|
}
|
|
@@ -252,12 +252,21 @@
|
|
|
252
252
|
<th style="text-align:center">
|
|
253
253
|
<nobr>一阶用气量(m³)</nobr>
|
|
254
254
|
</th>
|
|
255
|
+
<th style="text-align:center">
|
|
256
|
+
<nobr>一阶用气金额(元)</nobr>
|
|
257
|
+
</th>
|
|
255
258
|
<th style="text-align:center">
|
|
256
259
|
<nobr>二阶用气量(m³)</nobr>
|
|
257
260
|
</th>
|
|
261
|
+
<th style="text-align:center">
|
|
262
|
+
<nobr>二阶用气金额(元)</nobr>
|
|
263
|
+
</th>
|
|
258
264
|
<th style="text-align:center">
|
|
259
265
|
<nobr>三阶用气量(m³)</nobr>
|
|
260
266
|
</th>
|
|
267
|
+
<th style="text-align:center">
|
|
268
|
+
<nobr>三阶用气金额(元)</nobr>
|
|
269
|
+
</th>
|
|
261
270
|
<th style="text-align:center">
|
|
262
271
|
<nobr>用气量(m³)</nobr>
|
|
263
272
|
</th>
|
|
@@ -303,8 +312,11 @@
|
|
|
303
312
|
<!--<td style="text-align:center">{{row.f_avg_price}}</td>-->
|
|
304
313
|
<td style="text-align:center">{{row.f_price_name}}</td>
|
|
305
314
|
<td style="text-align:center">{{row.f_stair_gas1}}</td>
|
|
315
|
+
<td style="text-align:center">{{row.f_stair_money1}}</td>
|
|
306
316
|
<td style="text-align:center">{{row.f_stair_gas2}}</td>
|
|
317
|
+
<td style="text-align:center">{{row.f_stair_money2}}</td>
|
|
307
318
|
<td style="text-align:center">{{row.f_stair_gas3}}</td>
|
|
319
|
+
<td style="text-align:center">{{row.f_stair_money3}}</td>
|
|
308
320
|
<td style="text-align:center">{{row.f_oughtamount}}</td>
|
|
309
321
|
<td style="text-align:center">{{row.f_oughtfee}}</td>
|
|
310
322
|
<!-- <td style="text-align:center">{{row.f_collection}}</td>-->
|
|
@@ -330,12 +342,21 @@
|
|
|
330
342
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
331
343
|
一阶用气量合计: {{model.sums.f_stair_gas1}}
|
|
332
344
|
</td>
|
|
345
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
346
|
+
一阶用气金额合计: {{model.sums.f_stair_money1}}
|
|
347
|
+
</td>
|
|
333
348
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
334
349
|
二阶用气量合计: {{model.sums.f_stair_gas2}}
|
|
335
350
|
</td>
|
|
351
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
352
|
+
二阶用气金额合计: {{model.sums.f_stair_money2}}
|
|
353
|
+
</td>
|
|
336
354
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
337
355
|
三阶用气量合计: {{model.sums.f_stair_gas3}}
|
|
338
356
|
</td>
|
|
357
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
358
|
+
三阶用气金额合计: {{model.sums.f_stair_money3}}
|
|
359
|
+
</td>
|
|
339
360
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
|
|
340
361
|
本期用气量合计: {{model.sums.f_oughtamount}}
|
|
341
362
|
</td>
|
|
@@ -381,6 +402,9 @@ import {HttpResetClass, PagedList} from 'vue-client'
|
|
|
381
402
|
f_stair_gas1: 0,
|
|
382
403
|
f_stair_gas2: 0,
|
|
383
404
|
f_stair_gas3: 0,
|
|
405
|
+
f_stair_money1: 0,
|
|
406
|
+
f_stair_money2: 0,
|
|
407
|
+
f_stair_money3: 0,
|
|
384
408
|
f_oughtamount: 0,
|
|
385
409
|
f_oughtfee: 0,
|
|
386
410
|
f_total_gas: 0,
|
|
@@ -430,8 +454,11 @@ import {HttpResetClass, PagedList} from 'vue-client'
|
|
|
430
454
|
'f_last_tablebase': '上期底数',
|
|
431
455
|
'f_price_name':'气价名称',
|
|
432
456
|
'f_stair_gas1':'一阶用气量(m³)',
|
|
457
|
+
'f_stair_money1':'一阶用气金额(元)',
|
|
433
458
|
'f_stair_gas2':'二阶用气量(m³)',
|
|
459
|
+
'f_stair_money2':'二阶用气金额(元)',
|
|
434
460
|
'f_stair_gas3':'三阶用气量(m³)',
|
|
461
|
+
'f_stair_money3':'三阶用气金额(元)',
|
|
435
462
|
'f_tablebase':'本期底数',
|
|
436
463
|
'f_oughtamount':'用气量(m³)',
|
|
437
464
|
'f_oughtfee':'用气金额(元)',
|