manage-client 4.0.41 → 4.0.42
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/jiaxian/DayReportList.vue +459 -0
- package/src/filiale/jiaxian/config/DefaultPrint.js +6 -0
- package/src/filiale/jiaxian/config/exportConfig.js +2707 -0
- package/src/filiale/jiaxian/config/tableConfig.js +59 -0
- package/src/filiale/jiaxian/sale.js +7 -0
- package/src/filiale/qianneng/ChangeUserQuery.vue +400 -0
- package/src/filiale/qianneng/config/DefaultPrint.js +6 -0
- package/src/filiale/qianneng/config/exportConfig.js +2706 -0
- package/src/filiale/qianneng/config/tableConfig.js +59 -0
- package/src/filiale/qianneng/sale.js +4 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
// 查询页面的字段名和中文对应
|
|
3
|
+
ReportDataQuery: {
|
|
4
|
+
'用户编号': 'f_userinfo_code',
|
|
5
|
+
'用户名称': 'f_user_name',
|
|
6
|
+
'用户地址': 'f_address',
|
|
7
|
+
'小区': 'f_residential_area',
|
|
8
|
+
'用户类型': 'f_user_type',
|
|
9
|
+
'用气类型': 'f_user_nature',
|
|
10
|
+
'用气性质': 'f_gasproperties',
|
|
11
|
+
'表号': 'f_meternumber',
|
|
12
|
+
'本次抄表底数': 'f_tablebase',
|
|
13
|
+
'上次抄表底数': 'f_last_tablebase',
|
|
14
|
+
'表上余额': 'f_jval',
|
|
15
|
+
'抄表日期': 'f_hand_date',
|
|
16
|
+
|
|
17
|
+
'上次抄表日期': 'f_last_hand_date',
|
|
18
|
+
'开户日期': 'f_gas_date',
|
|
19
|
+
'软件版本号': 'f_software_version',
|
|
20
|
+
'表状态信息': 'f_table_msg',
|
|
21
|
+
'上次表状态信息': 'f_last_meter_state_msg',
|
|
22
|
+
|
|
23
|
+
'插入日期': 'f_insert_date',
|
|
24
|
+
'上次插入日期': 'f_last_insertdate',
|
|
25
|
+
'是否结算': 'f_whether_clear',
|
|
26
|
+
'超用气量': 'f_super_gas',
|
|
27
|
+
'电量等级': 'f_electricity',
|
|
28
|
+
|
|
29
|
+
'购气次数': 'f_times',
|
|
30
|
+
'单价': 'f_price',
|
|
31
|
+
'信号强度': 'f_signal',
|
|
32
|
+
'信噪比': 'f_snr',
|
|
33
|
+
'电压': 'f_batterylevel',
|
|
34
|
+
|
|
35
|
+
'阀门强制状态': 'f_networkshutvalve',
|
|
36
|
+
'阀门状态': 'f_valvestate',
|
|
37
|
+
'计量类型': 'f_wmprepaytype',
|
|
38
|
+
'上报类型': 'f_upload_type',
|
|
39
|
+
'金额状态': 'f_moneystate',
|
|
40
|
+
|
|
41
|
+
'增加工况瞬时': 'operatingModeFlow',
|
|
42
|
+
'标况瞬时': 'standardConditionFlow',
|
|
43
|
+
'开盖状态': 'f_SplitAlarm',
|
|
44
|
+
'液晶状态': 'f_XTIpllStopFlag',
|
|
45
|
+
'声速': 'soundVelocity',
|
|
46
|
+
|
|
47
|
+
'外电低电': 'f_lowlithiumbattery',
|
|
48
|
+
'磁干扰异常': 'f_magneticinterference',
|
|
49
|
+
'表内剩余金额': 'f_meterbalanceamt',
|
|
50
|
+
'表内累计充值金额': 'f_meterdebitamt',
|
|
51
|
+
'补偿状态': 'f_compensatestate',
|
|
52
|
+
'气表品牌': 'f_meter_brand',
|
|
53
|
+
'气表型号': 'f_meter_style',
|
|
54
|
+
'分公司': 'f_orgname',
|
|
55
|
+
'部门': 'f_depname'
|
|
56
|
+
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
}
|
|
@@ -17,4 +17,8 @@ export default function () {
|
|
|
17
17
|
Vue.component('business-manage', (resolve) => { require(['./BusinessManage'], resolve) })
|
|
18
18
|
// 综合档案信息查询
|
|
19
19
|
Vue.component('record-info-query', (resolve) => { require(['./RecordInfoQuery'], resolve) })
|
|
20
|
+
// 档案变更查询
|
|
21
|
+
Vue.component('changeuser-query', (resolve) => {
|
|
22
|
+
require(['./ChangeUserQuery'], resolve)
|
|
23
|
+
})
|
|
20
24
|
}
|