manage-client 4.0.51 → 4.0.52
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/filiale/gehua/ReportDataQuery.vue +8 -6
- package/src/filiale/tongchuan/GasInspection.vue +3 -3
- package/src/filiale/yangchun/ArchivesManage.vue +1 -1
- package/src/filiale/yangchun/NewGasStatistics.vue +542 -0
- package/src/filiale/yangchun/RecordInfoQuery.vue +4 -1
- package/src/filiale/yangchun/WebhandMonthGas.vue +819 -0
- package/src/filiale/yangchun/config/exportConfig.js +28 -3
- package/src/filiale/yangchun/webmeterManage.js +4 -0
- package/static/img/hasFile.png +0 -0
|
@@ -844,7 +844,8 @@ export default {
|
|
|
844
844
|
'f_rest_date': '所属年月',
|
|
845
845
|
'f_gas_type': '抵扣单价',
|
|
846
846
|
'f_current_deduct_amount': '本次抵扣金额',
|
|
847
|
-
'f_remaining_deduct_amount': '剩余抵扣金额'
|
|
847
|
+
'f_remaining_deduct_amount': '剩余抵扣金额',
|
|
848
|
+
'f_usetype': '使用类型'
|
|
848
849
|
},
|
|
849
850
|
handplanInfoConfig: {
|
|
850
851
|
'f_userinfo_code': '用户号',
|
|
@@ -1667,7 +1668,8 @@ export default {
|
|
|
1667
1668
|
'f_gas_state': '用气状态',
|
|
1668
1669
|
'f_changetable_state': '是否换表',
|
|
1669
1670
|
'f_first_input_date': '首次抄表时间',
|
|
1670
|
-
'f_input_date': '最后通讯日期'
|
|
1671
|
+
'f_input_date': '最后通讯日期',
|
|
1672
|
+
'f_usetype': '使用类型'
|
|
1671
1673
|
},
|
|
1672
1674
|
ArrearageConfig: {
|
|
1673
1675
|
'f_userinfo_code': '客户编号',
|
|
@@ -2424,6 +2426,29 @@ export default {
|
|
|
2424
2426
|
'f_card_id': '写卡账号',
|
|
2425
2427
|
'f_write_card': '写卡状态',
|
|
2426
2428
|
'f_write_money': '写卡金额'
|
|
2427
|
-
}
|
|
2429
|
+
},
|
|
2430
|
+
webhandplanMonthConfig: {
|
|
2431
|
+
'f_userinfo_code': '客户编号',
|
|
2432
|
+
'f_user_name': '客户名称',
|
|
2433
|
+
'f_user_phone': '客户电话',
|
|
2434
|
+
'f_user_state': '客户状态',
|
|
2435
|
+
'f_meter_classify': '气表类型',
|
|
2436
|
+
'f_meternumber': '表号',
|
|
2437
|
+
'f_user_type': '客户类型',
|
|
2438
|
+
'f_gasproperties': '用气性质',
|
|
2439
|
+
'f_table_state': '气表状态',
|
|
2440
|
+
'f_hand_date': '所属月份',
|
|
2441
|
+
'f_start_date': '期初上报时间',
|
|
2442
|
+
'f_end_date': '期末上报时间',
|
|
2443
|
+
'f_balance': '期初余额',
|
|
2444
|
+
'f_last_tablebase': '上期底数',
|
|
2445
|
+
'f_tablebase': '本期底数',
|
|
2446
|
+
'f_oughtamount': '用气量',
|
|
2447
|
+
'f_oughtfee': '用气金额',
|
|
2448
|
+
'f_collection': '期间实收金额',
|
|
2449
|
+
'f_curbalance': '期末余额',
|
|
2450
|
+
'f_orgname': '公司',
|
|
2451
|
+
'f_usetype': '使用类型'
|
|
2452
|
+
},
|
|
2428
2453
|
}
|
|
2429
2454
|
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import Vue from 'vue'
|
|
2
2
|
|
|
3
3
|
export default function () {
|
|
4
|
+
// 物联网表用气量统计表新
|
|
5
|
+
Vue.component('new-use-gas-statistics', (resolve) => { require(['./NewGasStatistics'], resolve) })
|
|
6
|
+
// 物联用户月度结算查询
|
|
7
|
+
Vue.component('webhand-month-gas', (resolve) => { require(['./WebhandMonthGas'], resolve) })
|
|
4
8
|
}
|
|
5
9
|
|
|
Binary file
|