manage-client 3.3.26 → 3.3.28
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/config/exportConfig.js +1 -1
- package/src/components/sale/filesquery/UserQuery.vue +34 -34
- package/src/components/webmeter/gasStatistics/NewGasStatistics.vue +2 -0
- package/src/filiale/alashan/MeterQuery.vue +981 -0
- package/src/filiale/alashan/UserQuery.vue +969 -0
- package/src/filiale/alashan/config/DefaultPrint.js +6 -0
- package/src/filiale/alashan/config/exportConfig.js +2256 -0
- package/src/filiale/alashan/config/tableConfig.js +54 -0
- package/src/filiale/alashan/sale.js +12 -0
- package/src/filiale/ningjin/GasStatistics.vue +10 -10
- package/src/filiale/qianneng/RecordInfoQuery.vue +22 -1
- package/src/filiale/qianneng/exportConfig.js +1 -1
- package/src/filiale/shexian/ChangeMeterQuery.vue +748 -0
- package/src/filiale/shexian/config/DefaultPrint.js +6 -0
- package/src/filiale/shexian/config/exportConfig.js +2260 -0
- package/src/filiale/shexian/config/tableConfig.js +54 -0
- package/src/filiale/shexian/sale.js +9 -0
|
@@ -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,12 @@
|
|
|
1
|
+
// 分公司特殊组件页面注册
|
|
2
|
+
import Vue from 'vue'
|
|
3
|
+
export default function () {
|
|
4
|
+
// 用户查询
|
|
5
|
+
Vue.component('user-query', (resolve) => {
|
|
6
|
+
require(['./UserQuery'], resolve)
|
|
7
|
+
})
|
|
8
|
+
// 表具查询
|
|
9
|
+
Vue.component('meter-query', (resolve) => {
|
|
10
|
+
require(['./MeterQuery'], resolve)
|
|
11
|
+
})
|
|
12
|
+
}
|
|
@@ -100,14 +100,14 @@
|
|
|
100
100
|
condition="ss.f_changetable_state = '{}'"
|
|
101
101
|
close-on-select></v-select>
|
|
102
102
|
</div>
|
|
103
|
-
<div class="col-sm-2 form-group"
|
|
104
|
-
<label class="font_normal_body">用气状态</label
|
|
105
|
-
<v-select :value.sync="model.f_gas_state"
|
|
106
|
-
v-model="model.f_gas_state"
|
|
107
|
-
:options="$parent.$parent.gasState"
|
|
108
|
-
condition="ss.f_gas_state = '{}'"
|
|
109
|
-
close-on-select></v-select
|
|
110
|
-
</div
|
|
103
|
+
<!-- <div class="col-sm-2 form-group">-->
|
|
104
|
+
<!-- <label class="font_normal_body">用气状态</label>-->
|
|
105
|
+
<!-- <v-select :value.sync="model.f_gas_state"-->
|
|
106
|
+
<!-- v-model="model.f_gas_state"-->
|
|
107
|
+
<!-- :options="$parent.$parent.gasState"-->
|
|
108
|
+
<!-- condition="ss.f_gas_state = '{}'"-->
|
|
109
|
+
<!-- close-on-select></v-select>-->
|
|
110
|
+
<!-- </div>-->
|
|
111
111
|
<div class="col-sm-2 form-group flex-row" style="white-space: nowrap">
|
|
112
112
|
<label class="font_normal_body">用气量区间</label>
|
|
113
113
|
<div class="row">
|
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
<th><nobr>期间用气金额</nobr></th>
|
|
208
208
|
<th><nobr>期间充值金额</nobr></th>
|
|
209
209
|
<th><nobr>期末余额</nobr></th>
|
|
210
|
-
<th><nobr>用气状态</nobr></th
|
|
210
|
+
<!-- <th><nobr>用气状态</nobr></th>-->
|
|
211
211
|
<th><nobr>是否换表</nobr></th>
|
|
212
212
|
<th><nobr>最后通讯日期</nobr></th>
|
|
213
213
|
</tr>
|
|
@@ -241,7 +241,7 @@
|
|
|
241
241
|
|
|
242
242
|
<th style="text-align:center"><nobr>{{row.f_collection}}</nobr></th>
|
|
243
243
|
<th style="text-align:center"><nobr>{{row.f_curbalance}}</nobr></th>
|
|
244
|
-
<th style="text-align:center"><nobr>{{row.f_gas_state}}</nobr></th
|
|
244
|
+
<!-- <th style="text-align:center"><nobr>{{row.f_gas_state}}</nobr></th>-->
|
|
245
245
|
<th style="text-align:center"><nobr>{{row.f_changetable_state}}</nobr></th>
|
|
246
246
|
<th style="text-align:center"><nobr>{{row.f_input_date}}</nobr></th>
|
|
247
247
|
</tr>
|
|
@@ -454,6 +454,26 @@
|
|
|
454
454
|
condition="f_network_valve='{}'">
|
|
455
455
|
</v-select>
|
|
456
456
|
</div>
|
|
457
|
+
<div class="col-sm-2 form-group" >
|
|
458
|
+
<label for="endDate5" class="font_normal_body" title="通讯日期">通讯日期</label>
|
|
459
|
+
<datepicker id="endDate5" placeholder="最后通讯开始日期" style="width:60%"
|
|
460
|
+
v-model="model.startDate5"
|
|
461
|
+
:value.sync="model.startDate5"
|
|
462
|
+
:format="'yyyy-MM-dd'"
|
|
463
|
+
:show-reset-button="true"
|
|
464
|
+
condition="f_meteread_date >= '{} 00:00:00'">
|
|
465
|
+
</datepicker>
|
|
466
|
+
</div>
|
|
467
|
+
<div class="col-sm-2 form-group" >
|
|
468
|
+
<label for="endDate5" class="font_normal_body" title="通讯日期">通讯日期</label>
|
|
469
|
+
<datepicker id="endDate5" placeholder="最后通讯结束日期" style="width:60%"
|
|
470
|
+
v-model="model.endDate5"
|
|
471
|
+
:value.sync="model.endDate5"
|
|
472
|
+
:format="'yyyy-MM-dd'"
|
|
473
|
+
:show-reset-button="true"
|
|
474
|
+
condition="f_meteread_date <= '{} 23:59:59'">
|
|
475
|
+
</datepicker>
|
|
476
|
+
</div>
|
|
457
477
|
</div>
|
|
458
478
|
</div>
|
|
459
479
|
</criteria>
|
|
@@ -513,7 +533,7 @@
|
|
|
513
533
|
<data-order field="f_hand_date" name="最后抄表日期" :order.sync="$parent.$parent.$parent.orderFields.f_hand_date"></data-order>
|
|
514
534
|
</th>
|
|
515
535
|
<!--<th><nobr>最后购气日期</nobr></th>-->
|
|
516
|
-
|
|
536
|
+
<th><nobr>通讯日期</nobr></th>
|
|
517
537
|
<th><nobr>自动阀控</nobr></th>
|
|
518
538
|
<th><nobr>阀门状态</nobr></th>
|
|
519
539
|
|
|
@@ -653,6 +673,7 @@
|
|
|
653
673
|
<td style="text-align: center;"><nobr>{{row.f_meter_base}}</nobr></td>
|
|
654
674
|
<td style="text-align: center;"><nobr>{{row.f_balance}}</nobr></td>
|
|
655
675
|
<td style="text-align: center;"><nobr>{{row.f_hand_date}}</nobr></td>
|
|
676
|
+
<td style="text-align: center;"><nobr>{{row.f_meteread_date}}</nobr></td>
|
|
656
677
|
<!-- <td style="text-align: center;"><nobr>{{row.f_max_operate_date}}</nobr></td>-->
|
|
657
678
|
<td style="text-align: center;"><nobr>{{row.f_network_valve}}</nobr></td>
|
|
658
679
|
<td style="text-align: center;"><nobr>{{row.f_valve_state}}</nobr></td>
|
|
@@ -23,7 +23,7 @@ export default{
|
|
|
23
23
|
'f_residential_area': '小区名称', 'f_building': '楼栋', 'f_unit': '单元', 'f_floor': '楼层', 'f_room': '门牌号', 'f_address': '客户地址','f_iscity':'地区类型', 'f_user_phone': '客户电话', 'f_usetype': '使用类型',
|
|
24
24
|
'f_gas_date': '通气日期', 'f_price_name': '气价名称', 'f_position': '安装位置', 'f_meter_type': '气表类型', 'f_meter_brand': '气表品牌',
|
|
25
25
|
'f_meternumber': '表号', 'f_metertitles': '表封号', 'f_aroundmeter': '左右表', 'f_install_date': '安装日期', 'f_meter_base': '气表底数',
|
|
26
|
-
'f_balance': '账户余额', 'f_hand_date': '最后抄表日期', 'f_whether_hairpin': '是否发卡',
|
|
26
|
+
'f_balance': '账户余额', 'f_hand_date': '最后抄表日期','f_meteread_date': '通讯日期', 'f_whether_hairpin': '是否发卡',
|
|
27
27
|
'f_valve_state': '阀门状态', 'f_user_type': '客户类型', 'f_gasproperties': '用气性质', 'value': '气价详情',
|
|
28
28
|
'f_open_date': '开户时间', 'f_credentials': '证件类型', 'f_idnumber': '证件号码', 'f_people_num': '人口数', 'f_ins_stop_date': '保险结束日期',
|
|
29
29
|
'f_createfile_date': '建档日期', 'f_createfile_person': '建档人', 'f_depname': '所属营业厅', 'f_comments': '备注信息',
|