manage-client 4.1.41 → 4.1.42-qjls
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/TransferQuery.vue +0 -2
- package/src/components/sale/config/exportConfig.js +2 -0
- package/src/filiale/WEINAN/config/exportConfig.js +2 -1
- package/src/filiale/WEINAN/webmeter/ReportList.vue +4 -0
- package/src/filiale/qingjian/MeterQuery.vue +998 -0
- package/src/filiale/qingjian/RecordInfoQuery.vue +1478 -0
- package/src/filiale/qingjian/webmeterManage.js +8 -0
- package/src/filiale/wuhai/RecordInfoQuery.vue +1450 -0
- package/src/filiale/wuhai/config/exportConfig.js +81 -20
package/package.json
CHANGED
|
@@ -380,8 +380,6 @@
|
|
|
380
380
|
// console.log('我的阐述', JSON.stringify(args.condition))
|
|
381
381
|
await this.model.search(args.condition, args.model)
|
|
382
382
|
this.sumsmodel = this.$refs.paged.$refs.grid.model.sums
|
|
383
|
-
this.sumsmodel.hushu=[...new Set(this.$refs.paged.$refs.grid.model.rows.map(item => item.f_userinfo_code))].length
|
|
384
|
-
|
|
385
383
|
console.log('合计字段', this.sumsmodel)
|
|
386
384
|
},
|
|
387
385
|
dealmsg(val) {
|
|
@@ -153,6 +153,7 @@ export default {
|
|
|
153
153
|
'value': '气价详情',
|
|
154
154
|
'f_meter_brand': '气表品牌',
|
|
155
155
|
'f_meter_style': '气表型号',
|
|
156
|
+
'f_xc_meter_style': '现场表具型号',
|
|
156
157
|
'f_inputtor': '户管员',
|
|
157
158
|
'f_gas_person': '通气人',
|
|
158
159
|
'f_gas_date': '通气时间',
|
|
@@ -643,6 +644,7 @@ export default {
|
|
|
643
644
|
'f_is_mgq': '是否煤改气',
|
|
644
645
|
'f_send_usegas_card': '是否发放天然气使用证',
|
|
645
646
|
'f_meter_style': '型号',
|
|
647
|
+
'f_xc_meter_style': '现场表具型号',
|
|
646
648
|
'f_table_state': '表具状态',
|
|
647
649
|
'f_initial_base': '初始气表底数',
|
|
648
650
|
'f_total_usegas_amount': '累计用气金额',
|
|
@@ -480,7 +480,8 @@ export default{
|
|
|
480
480
|
'f_hand_date': '上报日期', 'f_jval': '表内剩余金额', 'f_tablebase': '本次抄表底数', 'f_valvestate': '阀门状态',
|
|
481
481
|
'f_upload_type': '上报类型', 'f_insert_date': '系统接收时间', 'f_meterDebitAmt': '表内累计充值金额',
|
|
482
482
|
'f_signal': '噪音强度', 'f_snr': '信噪比', 'f_batterylevel': '电压', 'f_lowlithiumbattery': '电压状态', 'f_networkshutvalve': '阀门强制状态',
|
|
483
|
-
'f_wmprepaytype': '计量类型', 'f_moneystate': '金额状态', 'f_magneticInterference': '磁干扰异常', 'f_compensateState': '补偿状态'
|
|
483
|
+
'f_wmprepaytype': '计量类型', 'f_moneystate': '金额状态', 'f_magneticInterference': '磁干扰异常', 'f_compensateState': '补偿状态',
|
|
484
|
+
'flowmetertemperature': '温度', 'flowmeterpressure': '压力'
|
|
484
485
|
},
|
|
485
486
|
ReportDataQueryConfig: {
|
|
486
487
|
'f_userinfo_code': '客户编号', 'f_tablebase': '本次抄表底数', 'f_last_tablebase': '上次抄表底数', 'f_jval': '表计剩余余额', 'f_hand_date': '抄表日期',
|
|
@@ -175,6 +175,8 @@
|
|
|
175
175
|
|
|
176
176
|
<th><nobr>表状态</nobr></th>
|
|
177
177
|
<th><nobr>金额状态</nobr></th>
|
|
178
|
+
<th><nobr>温度</nobr></th>
|
|
179
|
+
<th><nobr>压力</nobr></th>
|
|
178
180
|
<!--<th><nobr>每小时上报量</nobr></th>-->
|
|
179
181
|
</tr>
|
|
180
182
|
</template>
|
|
@@ -202,6 +204,8 @@
|
|
|
202
204
|
|
|
203
205
|
<th style="text-align:center"><nobr>{{row.f_table_msg}}</nobr></th>
|
|
204
206
|
<th style="text-align:center"><nobr>{{row.f_moneystate}}</nobr></th>
|
|
207
|
+
<th style="text-align:center"><nobr>{{row.flowmetertemperature}}</nobr></th>
|
|
208
|
+
<th style="text-align:center"><nobr>{{row.flowmeterpressure}}</nobr></th>
|
|
205
209
|
<!-- <th style="text-align:center"><nobr>{{row.f_nsturalgas_data}}</nobr></th>-->
|
|
206
210
|
<!-- <th style="text-align:center"><nobr><span @click="$parent.$parent.$parent.showdetail(row.f_nsturalgas_data)"><a>查看</a></span></nobr></th>-->
|
|
207
211
|
<!--<th style="text-align:center">-->
|