manage-client 3.3.156 → 3.3.159
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/sale/businessquery/BusinessManage.vue +3 -0
- package/src/components/sale/businessquery/NfcRechargeRecord.vue +269 -0
- package/src/components/sale/config/exportConfig.js +12 -0
- package/src/filiale/WEINAN/CancellationQuery.vue +29 -9
- package/src/filiale/WEINAN/ManageCompanyGasSummary.vue +3 -2
- package/src/filiale/WEINAN/UserQuery.vue +14 -0
- package/src/filiale/alashan/config/exportConfig.js +12 -0
- package/src/filiale/lixianV3/FMYGasQuery.vue +841 -0
- package/src/filiale/lixianV3/config/exportConfig.js +34 -25
- package/src/filiale/lixianV3/sale.js +2 -0
- package/src/saleManage.js +4 -0
|
@@ -1021,31 +1021,40 @@ export default {
|
|
|
1021
1021
|
'f_version': '版本号', 'f_state': '状态', 'detailvalue': '气价信息'
|
|
1022
1022
|
},
|
|
1023
1023
|
fmygasConfig: {
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1024
|
+
"f_userinfo_code": "客户编号",
|
|
1025
|
+
"f_user_name": "客户名称",
|
|
1026
|
+
"f_olduserinfo_code": "档案编号",
|
|
1027
|
+
"f_user_phone": "客户电话",
|
|
1028
|
+
"f_credentials": "证件类型",
|
|
1029
|
+
"f_idnumber": "证件号码",
|
|
1030
|
+
"f_residential_area": "小区",
|
|
1031
|
+
"f_address": "客户地址",
|
|
1032
|
+
"f_user_type": "客户类型",
|
|
1033
|
+
"f_gasproperties": "用气性质",
|
|
1034
|
+
"f_meternumber": "表号",
|
|
1035
|
+
"f_meter_brand": "气表品牌",
|
|
1036
|
+
"f_meter_classify": "气表类型",
|
|
1037
|
+
"f_inputtor": "抄表员",
|
|
1038
|
+
"f_book_slice_area": "表册片区",
|
|
1039
|
+
"f_hand_number": "抄表次数",
|
|
1040
|
+
"f_date": "抄表区间",
|
|
1041
|
+
"f_input_day": "天数",
|
|
1042
|
+
"f_oughtamount": "用气量",
|
|
1043
|
+
"f_oughtfee": "用气金额",
|
|
1044
|
+
"f_last_tablebase": "期初底数",
|
|
1045
|
+
"f_tablebase": "期末底数",
|
|
1046
|
+
"f_stairamount1": "一阶气量",
|
|
1047
|
+
"f_stair1fee": "一阶气费",
|
|
1048
|
+
"f_stairamount2": "二阶气量",
|
|
1049
|
+
"f_stair2fee": "二阶气费",
|
|
1050
|
+
"f_stairamount3": "三阶气量",
|
|
1051
|
+
"f_stair3fee": "三阶气费",
|
|
1052
|
+
"f_createfile_date": "建档日期",
|
|
1053
|
+
"f_price_value": "气价详情",
|
|
1054
|
+
"f_balance": "账户余额",
|
|
1055
|
+
"f_pregas": "预购气量",
|
|
1056
|
+
"f_preamount": "预购金额",
|
|
1057
|
+
"f_collection": "实交金额"
|
|
1049
1058
|
},
|
|
1050
1059
|
notgasConfig: {
|
|
1051
1060
|
'f_userinfo_code': '客户编号',
|
|
@@ -12,6 +12,8 @@ export default function () {
|
|
|
12
12
|
Vue.component('change-meter-query', (resolve) => {
|
|
13
13
|
require(['./ChangeMeterQuery'], resolve)
|
|
14
14
|
})
|
|
15
|
+
// 用气查询
|
|
16
|
+
Vue.component('fmygas-query', (resolve) => { require(['./FMYGasQuery'], resolve) })
|
|
15
17
|
// 用气分析
|
|
16
18
|
Vue.component('gas-analysis-query', (resolve) => { require(['./GasAnalysisQuery'], resolve) })
|
|
17
19
|
// 用户缴费抄表查询
|
package/src/saleManage.js
CHANGED
|
@@ -89,6 +89,10 @@ export default function () {
|
|
|
89
89
|
Vue.component('charge-query', (resolve) => {
|
|
90
90
|
require(['./components/sale/businessquery/ChargeQuery'], resolve)
|
|
91
91
|
})
|
|
92
|
+
// NFC充值记录
|
|
93
|
+
Vue.component('nfc-recharge-record', (resolve) => {
|
|
94
|
+
require(['./components/sale/businessquery/NfcRechargeRecord'], resolve)
|
|
95
|
+
})
|
|
92
96
|
// 团缴查询
|
|
93
97
|
Vue.component('group-charge-query', (resolve) => {
|
|
94
98
|
require(['./components/sale/businessquery/GroupChargeQuery'], resolve)
|