sale-client 3.6.332 → 3.6.333
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/revenue/comprehen/ComprehenOperation/newchangemeter/ChangeMeter.vue +6 -1
- package/src/filiale/liuan/UserInfoDetailManageNew.vue +222 -0
- package/src/filiale/liuan/WatchCollection.vue +192 -0
- package/src/filiale/liuan/sale.js +2 -0
- package/src/filiale/qianneng/machine/MachineMeterCenter.vue +439 -438
- package/src/plugins/GetSaleParams.js +36 -0
package/package.json
CHANGED
|
@@ -437,6 +437,7 @@ export default {
|
|
|
437
437
|
castInt: true,
|
|
438
438
|
aroundmeter: false, // 表向
|
|
439
439
|
changeReason: false, // 换表原因
|
|
440
|
+
changePrice: false, // 气价任意变更权限
|
|
440
441
|
dispatch: false, // 是否派工
|
|
441
442
|
showupload: true, //
|
|
442
443
|
approve: false // 是否开启审核
|
|
@@ -588,7 +589,11 @@ export default {
|
|
|
588
589
|
f_price_type: this.newinfo.pricetype[0],
|
|
589
590
|
filter: this.$login.f.orgid
|
|
590
591
|
}
|
|
591
|
-
|
|
592
|
+
if (this.config.changePrice) {
|
|
593
|
+
rs = this.$GetSaleParam.getPriceAllOther(params)
|
|
594
|
+
} else {
|
|
595
|
+
rs = this.$GetSaleParam.getPrice(params)
|
|
596
|
+
}
|
|
592
597
|
}
|
|
593
598
|
if (rs.length === 0) {
|
|
594
599
|
this.newinfo.f_price_name = ''
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="binary flex">
|
|
3
|
+
<div class="row binary-left flex" style="width:99%;height:98%;margin-bottom:0px">
|
|
4
|
+
<div class="auto">
|
|
5
|
+
<user-base-info-new :row="row" :buttonshow="buttonshow"
|
|
6
|
+
@cancel-main="cancel"
|
|
7
|
+
@cancel-re="cancelRe"
|
|
8
|
+
@search-main="search"></user-base-info-new>
|
|
9
|
+
</div>
|
|
10
|
+
<saletabbut v-if="row" v-ref:list style="height:72%;margin-top: 1%;overflow-y: scroll">
|
|
11
|
+
<saletab header="流水查询" v-if="permission('流水查询')">
|
|
12
|
+
<record-query-user :row="row"></record-query-user>
|
|
13
|
+
</saletab>
|
|
14
|
+
<saletab header="机表流水查询" v-if="permission('机表流水查询')&&row.f_meter_type.includes('机表')">
|
|
15
|
+
<machine-record-query :row="row" v-if="show == '机表流水查询'" @deal-msg="dealMsg"></machine-record-query>
|
|
16
|
+
</saletab>
|
|
17
|
+
<saletab header="收费查询" v-if="!newWebHand && permission('收费查询')">
|
|
18
|
+
<charge-query-user :row="row" v-if="show == '收费查询'" @deal-msg="dealMsg"></charge-query-user>
|
|
19
|
+
</saletab>
|
|
20
|
+
<saletab header="收费查询" v-if="newWebHand && permission('收费查询')">
|
|
21
|
+
<charge-query-user :row="row" v-if="show == '收费查询'" @deal-msg="dealMsg"></charge-query-user>
|
|
22
|
+
</saletab>
|
|
23
|
+
<saletab header="累购查询" v-if="permission('累购查询')">
|
|
24
|
+
<Repurchase :row="row" v-if="show == '累购查询'" @deal-msg="dealMsg"></Repurchase>
|
|
25
|
+
</saletab>
|
|
26
|
+
<saletab header="下账查询"
|
|
27
|
+
v-if="!newWebHand && row.f_meter_type.includes('物联网表')&&permission('自动下账查询')">
|
|
28
|
+
<automatic-purse :row="row" @deal-msg="dealMsg"></automatic-purse>
|
|
29
|
+
</saletab>
|
|
30
|
+
<saletab header="下账查询"
|
|
31
|
+
v-if="newWebHand && row.f_meter_type.includes('物联网表')&&permission('自动下账查询')">
|
|
32
|
+
<web-automatic-purse :row="row" @deal-msg="dealMsg"></web-automatic-purse>
|
|
33
|
+
</saletab>
|
|
34
|
+
<saletab header="抄表记录" v-if="row.f_meter_type.includes('卡表')&&permission('抄表记录')">
|
|
35
|
+
<card-hand-record :row="row" v-if="show == '抄表记录'" @deal-msg="dealMsg"></card-hand-record>
|
|
36
|
+
</saletab>
|
|
37
|
+
<saletab header="抄表记录" v-if="!newWebHand && !row.f_meter_type.includes('卡表')&&permission('抄表记录')">
|
|
38
|
+
<hand-query-user :row="row" v-if="show == '抄表记录'" @deal-msg="dealMsg"></hand-query-user>
|
|
39
|
+
</saletab>
|
|
40
|
+
<saletab header="抄表记录" v-if="newWebHand && !row.f_meter_type.includes('卡表')&&permission('抄表记录')">
|
|
41
|
+
<web-hand-query-user :row="row" v-if="show == '抄表记录'" @deal-msg="dealMsg"></web-hand-query-user>
|
|
42
|
+
</saletab>
|
|
43
|
+
<saletab header="补卡查询" v-if="row.f_meter_type.includes('卡表')&&permission('补卡查询')">
|
|
44
|
+
<fill-card-query-user :row="row" v-if="show == '补卡查询'" @deal-msg="dealMsg"></fill-card-query-user>
|
|
45
|
+
</saletab>
|
|
46
|
+
<saletab header="补气查询" v-if="permission('补气查询')">
|
|
47
|
+
<fill-gas-query-user :row="row" v-if="show == '补气查询'" @deal-msg="dealMsg"></fill-gas-query-user>
|
|
48
|
+
</saletab>
|
|
49
|
+
<saletab header="换表查询" v-if="permission('换表查询')">
|
|
50
|
+
<change-meter-query-user :row="row" v-if="show == '换表查询'" @deal-msg="dealMsg"></change-meter-query-user>
|
|
51
|
+
</saletab>
|
|
52
|
+
<saletab header="其他收费" v-if="permission('其他收费')">
|
|
53
|
+
<other-charge-query-user :row="row" v-if="show == '其他收费'" @deal-msg="dealMsg"></other-charge-query-user>
|
|
54
|
+
</saletab>
|
|
55
|
+
<saletab header="过户查询" v-if="permission('过户查询')">
|
|
56
|
+
<transfer-query-user :row="row" v-if="show == '过户查询'" @deal-msg="dealMsg"></transfer-query-user>
|
|
57
|
+
</saletab>
|
|
58
|
+
<saletab header="价格调整" v-if="permission('价格调整')">
|
|
59
|
+
<price-change-query-user :row="row" v-if="show == '价格调整'" @deal-msg="dealMsg"></price-change-query-user>
|
|
60
|
+
</saletab>
|
|
61
|
+
<saletab header="附件查看" v-if="permission('附件查看')">
|
|
62
|
+
<upload-file-history :row="row" v-if="show == '附件查看'" @deal-msg="dealMsg"></upload-file-history>
|
|
63
|
+
</saletab>
|
|
64
|
+
<saletab header="变更记录" v-if="permission('变更记录')">
|
|
65
|
+
<change-record :row="row" v-if="show == '变更记录'" @deal-msg="dealMsg"></change-record>
|
|
66
|
+
</saletab>
|
|
67
|
+
<saletab header="指令查看" v-if="row.f_meter_type.includes('物联网表')&&permission('指令查看')">
|
|
68
|
+
<query-instruct :row="row" v-if="show == '指令查看'" @deal-msg="dealMsg"></query-instruct>
|
|
69
|
+
</saletab>
|
|
70
|
+
<saletab header="历史指令查看" v-if="row.f_meter_type.includes('物联网表')&&permission('历史指令查看')">
|
|
71
|
+
<query-history-instruct :row="row" v-if="show == '历史指令查看'" @deal-msg="dealMsg"></query-history-instruct>
|
|
72
|
+
</saletab>
|
|
73
|
+
<saletab header="异常报警" v-if="row.f_meter_type.includes('物联网表')&&permission('异常报警')">
|
|
74
|
+
<watch-warning :row="row" v-if="show == '异常报警'" @deal-msg="dealMsg"></watch-warning>
|
|
75
|
+
</saletab>
|
|
76
|
+
<saletab header="表具采集" v-if="row.f_meter_type.includes('物联网表')&&permission('表具采集')">
|
|
77
|
+
<watch-collection :row="row" v-if="show == '表具采集'" @deal-msg="dealMsg"></watch-collection>
|
|
78
|
+
</saletab>
|
|
79
|
+
<saletab header="调价补差" v-if="permission('调价补差')">
|
|
80
|
+
<price-adjustment-query-user :row="row" v-if="show == '调价补差'"
|
|
81
|
+
@deal-msg="dealMsg"></price-adjustment-query-user>
|
|
82
|
+
</saletab>
|
|
83
|
+
<saletab header="设备查询" v-if="permission('设备查询')">
|
|
84
|
+
<deveice-record :row="row" v-if="show == '设备查询'" @deal-msg="dealMsg"></deveice-record>
|
|
85
|
+
</saletab>
|
|
86
|
+
<saletab header="流量计参数查看" v-if="permission('流量计参数查看')">
|
|
87
|
+
<meter-param :row="row" v-if="show == '流量计参数查看'" @deal-msg="dealMsg"></meter-param>
|
|
88
|
+
</saletab>
|
|
89
|
+
<saletab header="表使用量图表" v-if="permission('流量计参数查看')">
|
|
90
|
+
<table-usage-chart :row="row" v-if="show == '表使用量图表'" @deal-msg="dealMsg"></table-usage-chart>
|
|
91
|
+
</saletab>
|
|
92
|
+
<saletab header="用户设备查询" v-if="permission('用户设备查看')">
|
|
93
|
+
<user-device-query :row="row" v-if="show == '用户设备查询'" @deal-msg="dealMsg"></user-device-query>
|
|
94
|
+
</saletab>
|
|
95
|
+
<saletab header="合同查看" v-if="permission('合同查看')">
|
|
96
|
+
<contract-signing-list :row="row" v-if="show == '合同查看'" @deal-msg="dealMsg"></contract-signing-list>
|
|
97
|
+
</saletab>
|
|
98
|
+
</saletabbut>
|
|
99
|
+
</div>
|
|
100
|
+
</div>
|
|
101
|
+
</template>
|
|
102
|
+
|
|
103
|
+
<script>
|
|
104
|
+
import {HttpResetClass} from 'vue-client'
|
|
105
|
+
// 导入IC卡相关查询界面
|
|
106
|
+
import ChangeMeterQueryUser from '../../components/common/userinfo_detail/ic_detail/ChangeMeterQueryUser'
|
|
107
|
+
import ChargeQueryUser from '../../components/common/userinfo_detail/ic_detail/ChargeQueryUser'
|
|
108
|
+
import ChargeRecordQueryUser from '../../components/common/userinfo_detail/ic_detail/ChargeRecordQuery'
|
|
109
|
+
import FillCardQueryUser from '../../components/common/userinfo_detail/ic_detail/FillCardQueryUser'
|
|
110
|
+
import HandQueryUser from '../../components/common/userinfo_detail/ic_detail/HandQueryUser'
|
|
111
|
+
import OtherChargeQueryUser from '../../components/common/userinfo_detail/ic_detail/OtherChargeQueryUser'
|
|
112
|
+
import RecordQueryUser from '../../components/common/userinfo_detail/ic_detail/RecordQueryUser'
|
|
113
|
+
import TransferQueryUser from '../../components/common/userinfo_detail/ic_detail/TransferQueryUser'
|
|
114
|
+
import CardHandRecord from '../../components/common/userinfo_detail/ic_detail/CardHandRecord'
|
|
115
|
+
import AutomaticPurse from '../../components/common/userinfo_detail/ic_detail/AutomaticPurse'
|
|
116
|
+
import Repurchase from '../../components/common/userinfo_detail/ic_detail/Repurchase'
|
|
117
|
+
import MachineRecordQuery from '../../components/common/userinfo_detail/ic_detail/MachineRecordQuery'
|
|
118
|
+
import WebAutomaticPurse from '../../components/common/userinfo_detail/ic_detail/WebAutomaticPurse'
|
|
119
|
+
import WebChargeQueryUser from '../../components/common/userinfo_detail/ic_detail/WebChargeQueryUser'
|
|
120
|
+
import WebHandQueryUser from '../../components/common/userinfo_detail/ic_detail/WebHandQueryUser'
|
|
121
|
+
import UserDeviceQuery from '../../components/common/userinfo_detail/ic_detail/UserDeviceQuery'
|
|
122
|
+
import contractSigningList from '../../components/common/userinfo_detail/ic_detail/contractSigningList'
|
|
123
|
+
|
|
124
|
+
// 导入物联网相关查询
|
|
125
|
+
import QueryInstruct from '../../components/common/userinfo_detail/iot_detail/QueryInstruct'
|
|
126
|
+
import QueryHistoryInstruct from '../../components/common/userinfo_detail/iot_detail/QueryHistoryInstruct'
|
|
127
|
+
import WatchCollection from './WatchCollection'
|
|
128
|
+
import WatchWarning from '../../components/common/userinfo_detail/iot_detail/WatchWarning'
|
|
129
|
+
import PriceChangeQueryUser from '../../components/common/userinfo_detail/ic_detail/PriceChangeQueryUser'
|
|
130
|
+
import ChangeRecord from '../../components/common/userinfo_detail/ic_detail/ChangeRecord'
|
|
131
|
+
import PriceAdjustmentQueryUser from '../../components/common/userinfo_detail/ic_detail/PriceAdjustmentQueryUser'
|
|
132
|
+
import MeterParam from '../../components/common/userinfo_detail/ic_detail/MeterParam'
|
|
133
|
+
import DeveiceRecord from '../../components/common/userinfo_detail/ic_detail/DeveiceRecord'
|
|
134
|
+
|
|
135
|
+
export default {
|
|
136
|
+
title: '用户详细信息',
|
|
137
|
+
props: ['f_userfiles_id', 'f_userinfo_id', 'f_userinfo_code', 'parentname', 'buttonshow'],
|
|
138
|
+
components: {
|
|
139
|
+
PriceAdjustmentQueryUser,
|
|
140
|
+
PriceChangeQueryUser,
|
|
141
|
+
AutomaticPurse,
|
|
142
|
+
WebAutomaticPurse,
|
|
143
|
+
WebChargeQueryUser,
|
|
144
|
+
WebHandQueryUser,
|
|
145
|
+
Repurchase,
|
|
146
|
+
ChangeMeterQueryUser,
|
|
147
|
+
ChargeQueryUser,
|
|
148
|
+
ChargeRecordQueryUser,
|
|
149
|
+
FillCardQueryUser,
|
|
150
|
+
HandQueryUser,
|
|
151
|
+
OtherChargeQueryUser,
|
|
152
|
+
RecordQueryUser,
|
|
153
|
+
TransferQueryUser,
|
|
154
|
+
WatchWarning,
|
|
155
|
+
WatchCollection,
|
|
156
|
+
QueryInstruct,
|
|
157
|
+
QueryHistoryInstruct,
|
|
158
|
+
ChangeRecord,
|
|
159
|
+
CardHandRecord,
|
|
160
|
+
MeterParam,
|
|
161
|
+
DeveiceRecord,
|
|
162
|
+
MachineRecordQuery,
|
|
163
|
+
UserDeviceQuery,
|
|
164
|
+
contractSigningList
|
|
165
|
+
},
|
|
166
|
+
data () {
|
|
167
|
+
return {
|
|
168
|
+
row: null,
|
|
169
|
+
name: '自动下账查询',
|
|
170
|
+
newWebHand: this.$appdata.getSingleValue('新抄表'),
|
|
171
|
+
show: ''
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
ready () {
|
|
175
|
+
this.search()
|
|
176
|
+
console.log(this.$login)
|
|
177
|
+
},
|
|
178
|
+
methods: {
|
|
179
|
+
permission (name) {
|
|
180
|
+
if (this.$login.r.find(value => value == '收费综合查询')) {
|
|
181
|
+
if (!this.$login.r.find(value => value == name)) {
|
|
182
|
+
return false
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
return true
|
|
186
|
+
},
|
|
187
|
+
async search () {
|
|
188
|
+
let http = new HttpResetClass()
|
|
189
|
+
let condition = ' 1 = 1'
|
|
190
|
+
if (this.f_userfiles_id) {
|
|
191
|
+
condition = `f_userfiles_id = '${this.f_userfiles_id}'`
|
|
192
|
+
} else if (this.f_userinfo_id) {
|
|
193
|
+
condition = `f_userinfo_id = '${this.f_userinfo_id}'`
|
|
194
|
+
} else if (this.f_userinfo_code) {
|
|
195
|
+
condition = `f_userinfo_code = '${this.f_userinfo_code}'`
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
let getBaseInfo = await http.load('POST', 'rs/sql/iot_getUserBaseData',
|
|
199
|
+
{data: {condition: condition}}, {resolveMsg: null, rejectMsg: '获取基本信息出错'})
|
|
200
|
+
this.row = getBaseInfo.data[0]
|
|
201
|
+
this.row.parentname = this.parentname || ''
|
|
202
|
+
},
|
|
203
|
+
|
|
204
|
+
cancel (val) {
|
|
205
|
+
this.$emit('cancel-main', val)
|
|
206
|
+
},
|
|
207
|
+
|
|
208
|
+
cancelRe (val) {
|
|
209
|
+
this.$emit('cancel-re', val)
|
|
210
|
+
},
|
|
211
|
+
|
|
212
|
+
butOper (val) {
|
|
213
|
+
this.name = val
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
watch: {
|
|
217
|
+
'f_userinfo_id' () {
|
|
218
|
+
this.search()
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
</script>
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div id="stand-work-list">
|
|
3
|
+
<div @keyup.enter="search" class="span">
|
|
4
|
+
<criteria-paged :model="model" v-ref:paged>
|
|
5
|
+
<criteria @condition-changed='$parent.search' partial='criteria' v-ref:criteria>
|
|
6
|
+
<div class="form-horizontal select-overspread container-fluid auto" novalidate partial>
|
|
7
|
+
<div class="row">
|
|
8
|
+
|
|
9
|
+
<div class="col-sm-2 form-group ">
|
|
10
|
+
<label class="font_normal_body">上报时间</label>
|
|
11
|
+
<datepicker :format="'yyyy-MM-dd HH:mm:ss'" :value.sync="model.f_start_date"
|
|
12
|
+
class="datepicker"
|
|
13
|
+
condition="m.f_hand_date >= '{}'"
|
|
14
|
+
placeholder="大于等于"
|
|
15
|
+
style="width: 60%"
|
|
16
|
+
v-model="model.f_start_date"
|
|
17
|
+
></datepicker>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="col-sm-2 form-group ">
|
|
20
|
+
<label class="font_normal_body"> 至</label>
|
|
21
|
+
<datepicker :format="'yyyy-MM-dd HH:mm:ss'" :value.sync="model.f_end_date"
|
|
22
|
+
class="datepicker"
|
|
23
|
+
condition="m.f_hand_date <= '{}'"
|
|
24
|
+
placeholder="小于等于"
|
|
25
|
+
style="width: 60%"
|
|
26
|
+
v-model="model.f_end_date"
|
|
27
|
+
></datepicker>
|
|
28
|
+
</div>
|
|
29
|
+
<div style="float: right">
|
|
30
|
+
<button @click="search()" class="button_search" v-el:cba>查询</button>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
|
|
34
|
+
</div>
|
|
35
|
+
</criteria>
|
|
36
|
+
<data-grid :model="model" class="list_area table_sy" partial='list' v-ref:grid>
|
|
37
|
+
<template partial='head'>
|
|
38
|
+
<tr>
|
|
39
|
+
<th>
|
|
40
|
+
<nobr>上报日期</nobr>
|
|
41
|
+
</th>
|
|
42
|
+
<th>
|
|
43
|
+
<nobr>表上余额</nobr>
|
|
44
|
+
</th>
|
|
45
|
+
<th>
|
|
46
|
+
<nobr>本次抄表底数</nobr>
|
|
47
|
+
</th>
|
|
48
|
+
<th>
|
|
49
|
+
<nobr>阀门状态</nobr>
|
|
50
|
+
</th>
|
|
51
|
+
<th>
|
|
52
|
+
<nobr>上报类型</nobr>
|
|
53
|
+
</th>
|
|
54
|
+
<th>
|
|
55
|
+
<nobr>系统接收时间</nobr>
|
|
56
|
+
</th>
|
|
57
|
+
<th>
|
|
58
|
+
<nobr>表内累计充值金额</nobr>
|
|
59
|
+
</th>
|
|
60
|
+
<th>
|
|
61
|
+
<nobr>噪音强度</nobr>
|
|
62
|
+
</th>
|
|
63
|
+
<th>
|
|
64
|
+
<nobr>信噪比</nobr>
|
|
65
|
+
</th>
|
|
66
|
+
<th>
|
|
67
|
+
<nobr>电压</nobr>
|
|
68
|
+
</th>
|
|
69
|
+
<th>
|
|
70
|
+
<nobr>电压状态</nobr>
|
|
71
|
+
</th>
|
|
72
|
+
<th>
|
|
73
|
+
<nobr>阀门强制状态</nobr>
|
|
74
|
+
</th>
|
|
75
|
+
<th>
|
|
76
|
+
<nobr>计量类型</nobr>
|
|
77
|
+
</th>
|
|
78
|
+
<th>
|
|
79
|
+
<nobr>金额状态</nobr>
|
|
80
|
+
</th>
|
|
81
|
+
|
|
82
|
+
<th>
|
|
83
|
+
<nobr>磁干扰异常</nobr>
|
|
84
|
+
</th>
|
|
85
|
+
<th>
|
|
86
|
+
<nobr>补偿状态</nobr>
|
|
87
|
+
</th>
|
|
88
|
+
<th>
|
|
89
|
+
<nobr>温度</nobr>
|
|
90
|
+
</th>
|
|
91
|
+
<th>
|
|
92
|
+
<nobr>压力</nobr>
|
|
93
|
+
</th>
|
|
94
|
+
</tr>
|
|
95
|
+
</template>
|
|
96
|
+
<template partial='body' partial='list'>
|
|
97
|
+
<tr>
|
|
98
|
+
<td style="text-align:center">
|
|
99
|
+
<nobr>{{ row.f_hand_date }}</nobr>
|
|
100
|
+
</td>
|
|
101
|
+
<th style="text-align:center">
|
|
102
|
+
<nobr>{{ row.f_jval }}</nobr>
|
|
103
|
+
</th>
|
|
104
|
+
<th style="text-align:center">
|
|
105
|
+
<nobr>{{ row.f_tablebase }}</nobr>
|
|
106
|
+
</th>
|
|
107
|
+
<th style="text-align:center">
|
|
108
|
+
<nobr>{{ row.f_valvestate == 0 ? '开阀' : '关阀' }}</nobr>
|
|
109
|
+
</th>
|
|
110
|
+
<th style="text-align:center">
|
|
111
|
+
<nobr>{{ row.f_upload_type }}</nobr>
|
|
112
|
+
</th>
|
|
113
|
+
<th style="text-align:center">
|
|
114
|
+
<nobr>{{ row.f_insert_date }}</nobr>
|
|
115
|
+
</th>
|
|
116
|
+
<th style="text-align:center">
|
|
117
|
+
<nobr>{{ row.f_meterdebitamt }}</nobr>
|
|
118
|
+
</th>
|
|
119
|
+
<th style="text-align:center">
|
|
120
|
+
<nobr>{{ row.f_signal }}</nobr>
|
|
121
|
+
</th>
|
|
122
|
+
<th style="text-align:center">
|
|
123
|
+
<nobr>{{ row.f_snr }}</nobr>
|
|
124
|
+
</th>
|
|
125
|
+
<th style="text-align:center">
|
|
126
|
+
<nobr>{{ row.f_batterylevel }}</nobr>
|
|
127
|
+
</th>
|
|
128
|
+
<th style="text-align:center">
|
|
129
|
+
<nobr>{{ row.f_lowlithiumbattery ? ((row.f_lowlithiumbattery - 0) == 0 ? '正常' : '异常') : '未知' }}
|
|
130
|
+
</nobr>
|
|
131
|
+
</th>
|
|
132
|
+
<th style="text-align:center">
|
|
133
|
+
<nobr>{{ row.f_networkshutvalve }}</nobr>
|
|
134
|
+
</th>
|
|
135
|
+
<th style="text-align:center">
|
|
136
|
+
<nobr>{{ row.f_wmprepaytype }}</nobr>
|
|
137
|
+
</th>
|
|
138
|
+
<th style="text-align:center">
|
|
139
|
+
<nobr>{{ row.f_moneystate }}</nobr>
|
|
140
|
+
</th>
|
|
141
|
+
<th style="text-align:center">
|
|
142
|
+
<nobr>{{ row.f_magneticInterference }}</nobr>
|
|
143
|
+
</th>
|
|
144
|
+
<th style="text-align:center">
|
|
145
|
+
<nobr>{{ row.f_compensateState }}</nobr>
|
|
146
|
+
</th>
|
|
147
|
+
<th style="text-align:center">
|
|
148
|
+
<nobr>{{ row.flowmeterTemperature }}</nobr>
|
|
149
|
+
</th>
|
|
150
|
+
<th style="text-align:center">
|
|
151
|
+
<nobr>{{ row.flowmeterPressure }}</nobr>
|
|
152
|
+
</th>
|
|
153
|
+
</tr>
|
|
154
|
+
</template>
|
|
155
|
+
<template partial='foot'></template>
|
|
156
|
+
</data-grid>
|
|
157
|
+
</criteria-paged>
|
|
158
|
+
</div>
|
|
159
|
+
</div>
|
|
160
|
+
</template>
|
|
161
|
+
|
|
162
|
+
<script>
|
|
163
|
+
import {PagedList} from 'vue-client'
|
|
164
|
+
|
|
165
|
+
export default {
|
|
166
|
+
title: 'WatchCollection',
|
|
167
|
+
data () {
|
|
168
|
+
return {
|
|
169
|
+
model: new PagedList('rs/sql/iot_getNewLoseUserQuery', 50)
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
props: ['row'],
|
|
173
|
+
ready () {
|
|
174
|
+
this.$refs.paged.$refs.criteria.search()
|
|
175
|
+
},
|
|
176
|
+
methods: {
|
|
177
|
+
search (args) {
|
|
178
|
+
args.condition = `${args.condition} and f_userfiles_id='${this.row.f_userfiles_id}'`
|
|
179
|
+
this.model.search(args.condition, args.model)
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
watch: {
|
|
183
|
+
// 监听查询对象
|
|
184
|
+
'row' (val) {
|
|
185
|
+
if (this.row != null) {
|
|
186
|
+
this.$refs.paged.$refs.criteria.search()
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
</script>
|
|
192
|
+
|
|
@@ -8,4 +8,6 @@ export default function () {
|
|
|
8
8
|
Vue.component('sale-userinfo', (resolve) => { require(['./Userinfo'], resolve) })
|
|
9
9
|
// 当前选择用户的表具基本信息
|
|
10
10
|
Vue.component('user-meterinfodetail', (resolve) => { require(['./meterinfodetail'], resolve) })
|
|
11
|
+
|
|
12
|
+
Vue.component('user-info-detail-manage-new', (resolve) => { require(['./UserInfoDetailManageNew'], resolve) })
|
|
11
13
|
}
|