manage-client 3.3.47 → 3.3.49
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 +2 -2
- package/src/components/webmeter/instruction/NewQueryInstruct.vue +7 -1
- package/src/filiale/Baole/FmyGasDeviceQuery.vue +859 -0
- package/src/filiale/Baole/GasDeviceQuery.vue +969 -0
- package/src/filiale/Baole/GasPriceGroup.vue +336 -0
- package/src/filiale/Baole/RecordInfoQuery.vue +1735 -0
- package/src/filiale/Baole/config/DefaultPrint.js +6 -0
- package/src/filiale/Baole/config/exportConfig.js +2276 -0
- package/src/filiale/Baole/config/tableConfig.js +54 -0
- package/src/filiale/Baole/reportManage.js +9 -0
- package/src/filiale/Baole/sale.js +17 -0
- package/src/filiale/rizhao/ChargeQuery.vue +7 -1
- package/src/filiale/rizhao/config/exportConfig.js +4 -2
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
export default{
|
|
2
|
+
//查询页面的字段名和中文对应
|
|
3
|
+
ReportDataQuery:
|
|
4
|
+
{
|
|
5
|
+
"用户编号":"f_userinfo_code",
|
|
6
|
+
"用户名称":"f_user_name",
|
|
7
|
+
"表号":"f_meternumber",
|
|
8
|
+
"本次抄表底数":"f_tablebase",
|
|
9
|
+
"上次抄表底数":"f_last_tablebase",
|
|
10
|
+
"表上余额":"f_jval",
|
|
11
|
+
"抄表日期":"f_hand_date",
|
|
12
|
+
|
|
13
|
+
"上次抄表日期":"f_last_hand_date",
|
|
14
|
+
"开户日期":"f_gas_date",
|
|
15
|
+
"软件版本号":"f_software_version",
|
|
16
|
+
"表状态信息":"f_table_msg",
|
|
17
|
+
"上次表状态信息":"f_last_meter_state_msg",
|
|
18
|
+
|
|
19
|
+
"插入日期":"f_insert_date",
|
|
20
|
+
"上次插入日期":"f_last_insertdate",
|
|
21
|
+
"是否结算":"f_whether_clear",
|
|
22
|
+
"超用气量":"f_super_gas",
|
|
23
|
+
"电量等级":"f_electricity",
|
|
24
|
+
|
|
25
|
+
"购气次数":"f_times",
|
|
26
|
+
"单价":"f_price",
|
|
27
|
+
"信号强度":"f_signal",
|
|
28
|
+
"信噪比":"f_snr",
|
|
29
|
+
"电压":"f_batterylevel",
|
|
30
|
+
|
|
31
|
+
"阀门强制状态":"f_networkshutvalve",
|
|
32
|
+
"阀门状态":"f_valvestate",
|
|
33
|
+
"计量类型":"f_wmprepaytype",
|
|
34
|
+
"上报类型":"f_upload_type",
|
|
35
|
+
"金额状态":"f_moneystate",
|
|
36
|
+
|
|
37
|
+
"增加工况瞬时":"operatingModeFlow",
|
|
38
|
+
"标况瞬时":"standardConditionFlow",
|
|
39
|
+
"开盖状态" :"f_SplitAlarm",
|
|
40
|
+
"液晶状态" : "f_XTIpllStopFlag",
|
|
41
|
+
"声速" :"soundVelocity",
|
|
42
|
+
|
|
43
|
+
"外电低电":"f_lowlithiumbattery",
|
|
44
|
+
"磁干扰异常":"f_magneticinterference",
|
|
45
|
+
"表内剩余金额":"f_meterbalanceamt",
|
|
46
|
+
"表内累计充值金额":"f_meterdebitamt",
|
|
47
|
+
"补偿状态":"f_compensatestate",
|
|
48
|
+
"气表品牌":"f_meter_brand",
|
|
49
|
+
"气表型号":"f_meter_style",
|
|
50
|
+
"分公司":"f_orgname"
|
|
51
|
+
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
// 分公司特殊组件页面注册
|
|
2
|
+
import Vue from 'vue'
|
|
3
|
+
|
|
4
|
+
export default function () {
|
|
5
|
+
// 综合档案信息查询
|
|
6
|
+
Vue.component('record-info-query', (resolve) => {
|
|
7
|
+
require(['./RecordInfoQuery'], resolve)
|
|
8
|
+
})
|
|
9
|
+
// 民用用气设备查询
|
|
10
|
+
Vue.component('my-gas-device-query', (resolve) => {
|
|
11
|
+
require(['./GasDeviceQuery'], resolve)
|
|
12
|
+
})
|
|
13
|
+
// 非民用用气设备查询
|
|
14
|
+
Vue.component('fmy-gas-device-query', (resolve) => {
|
|
15
|
+
require(['./FmyGasDeviceQuery'], resolve)
|
|
16
|
+
})
|
|
17
|
+
}
|
|
@@ -343,6 +343,9 @@
|
|
|
343
343
|
<th>
|
|
344
344
|
<nobr>客户名称</nobr>
|
|
345
345
|
</th>
|
|
346
|
+
<th>
|
|
347
|
+
<nobr>身份证号</nobr>
|
|
348
|
+
</th>
|
|
346
349
|
<th>
|
|
347
350
|
<nobr>小区</nobr>
|
|
348
351
|
</th>
|
|
@@ -536,6 +539,9 @@
|
|
|
536
539
|
<td style="text-align: center;">
|
|
537
540
|
<nobr>{{row.f_user_name}}</nobr>
|
|
538
541
|
</td>
|
|
542
|
+
<td style="text-align: center;">
|
|
543
|
+
<nobr>{{row.f_idnumber}}</nobr>
|
|
544
|
+
</td>
|
|
539
545
|
<td style="text-align: center;"><nobr>
|
|
540
546
|
<nobr>{{row.f_residential_area}}</nobr>
|
|
541
547
|
</nobr> </td>
|
|
@@ -784,7 +790,7 @@
|
|
|
784
790
|
|
|
785
791
|
<script>
|
|
786
792
|
import {HttpResetClass, PagedList} from 'vue-client'
|
|
787
|
-
import exportConfig from '
|
|
793
|
+
import exportConfig from './config/exportConfig'
|
|
788
794
|
let cardBtnGen = async function (self, val) {
|
|
789
795
|
self.cardInfo = val.data
|
|
790
796
|
|
|
@@ -84,14 +84,16 @@ export default{
|
|
|
84
84
|
'f_price_name': '气价名称','f_type': '收费类型', 'f_price': '单价', 'f_gas': '气量','f_money': '气费'
|
|
85
85
|
},
|
|
86
86
|
chargeConfig: {
|
|
87
|
-
'id': '收费编号', 'f_userinfo_code': '客户编号', 'f_olduserinfo_code': '档案编号', 'f_user_name': '客户名称',
|
|
87
|
+
'id': '收费编号', 'f_userinfo_code': '客户编号', 'f_olduserinfo_code': '档案编号', 'f_user_name': '客户名称',
|
|
88
|
+
'f_idnumber': '身份证号', 'f_user_phone': '客户电话', 'f_address': '客户地址', 'f_zones': '片区', 'f_user_type': '客户类型',
|
|
88
89
|
'f_gasproperties': '用气性质', 'f_meternumber': '表号', 'f_meter_brand': '气表品牌', 'f_times': '购气次数', 'f_price_name': '气价名称',
|
|
89
90
|
'f_last_tablebase': '上期底数', 'f_tablebase': '本期底数', 'f_pregas': '气量', 'fee': '金额', 'f_preamount': '燃气费', 'f_collection': '收款', 'f_privilege_money': '优惠金额', 'f_balance': '上期结余',
|
|
90
91
|
'f_curbalance': '本期结余', 'f_type': '收费类型', 'f_payment': '付款方式', 'f_bank_type': '支付渠道', 'f_state': '状态', 'f_operate_date': '收费日期', 'f_serial_id': '流水号',
|
|
91
92
|
'f_delaypay': '违约金', 'f_comments': '备注', 'f_operator': '操作员', 'f_depname': '部门', 'f_orgname': '公司',
|
|
92
93
|
'f_yucun': '预存金额', 'f_card_id': '卡号', 'f_stairamount1': '一阶气量', 'f_stair1price': '一阶单价', 'f_stair1fee': '一阶气费',
|
|
93
94
|
'f_stair2amount': '二阶气量', 'f_stair2price': '二阶单价', 'f_stair2fee': '二阶气费',
|
|
94
|
-
'f_stair3amount': '三阶气量', 'f_stair3price': '三阶单价', 'f_stair3fee': '三阶气费', 'f_inputtor': '抄表员',
|
|
95
|
+
'f_stair3amount': '三阶气量', 'f_stair3price': '三阶单价', 'f_stair3fee': '三阶气费', 'f_inputtor': '抄表员',
|
|
96
|
+
'f_residential_area': '小区', 'f_serial_number': '业务单号'
|
|
95
97
|
},
|
|
96
98
|
loginQueryConfig:{
|
|
97
99
|
'userid': '登录人编号','username': '登录人名称', 'logindate': '登录时间', 'type': '类型'
|