sale-client 3.5.101 → 3.5.102
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
CHANGED
|
@@ -1,115 +1,115 @@
|
|
|
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><nobr>上报日期</nobr></th>
|
|
40
|
-
<th><nobr>表内剩余金额</nobr></th>
|
|
41
|
-
<th><nobr>本次抄表底数</nobr></th>
|
|
42
|
-
<th><nobr>阀门状态</nobr></th>
|
|
43
|
-
<th><nobr>上报类型</nobr></th>
|
|
44
|
-
<th><nobr>系统接收时间</nobr></th>
|
|
45
|
-
<th><nobr>表内累计充值金额</nobr></th>
|
|
46
|
-
<th><nobr>噪音强度</nobr></th>
|
|
47
|
-
<th><nobr>信噪比</nobr></th>
|
|
48
|
-
<th><nobr>电压</nobr></th>
|
|
49
|
-
<th><nobr>电压状态</nobr></th>
|
|
50
|
-
<th><nobr>阀门强制状态</nobr></th>
|
|
51
|
-
<!-- <th><nobr>计量类型</nobr></th>-->
|
|
52
|
-
<!-- <th><nobr>金额状态</nobr></th>-->
|
|
53
|
-
|
|
54
|
-
<th><nobr>磁干扰异常</nobr></th>
|
|
55
|
-
<th><nobr>补偿状态</nobr></th>
|
|
56
|
-
</tr>
|
|
57
|
-
</template>
|
|
58
|
-
<template partial='body' partial='list'>
|
|
59
|
-
<tr >
|
|
60
|
-
<td style="text-align:center"><nobr>{{row.f_hand_date}}</nobr></td>
|
|
61
|
-
<th style="text-align:center"><nobr>{{row.f_meterbalanceamt}}</nobr></th>
|
|
62
|
-
<th style="text-align:center"><nobr>{{row.f_tablebase}}</nobr></th>
|
|
63
|
-
<th style="text-align:center"><nobr>{{row.f_valvestate == 0 ? '开阀' : '关阀'}}</nobr></th>
|
|
64
|
-
<th style="text-align:center"><nobr>{{row.f_upload_type}}</nobr></th>
|
|
65
|
-
<th style="text-align:center"><nobr>{{row.f_insert_date}}</nobr></th>
|
|
66
|
-
<th style="text-align:center"><nobr>{{row.f_meterdebitamt}}</nobr></th>
|
|
67
|
-
<th style="text-align:center"><nobr>{{row.f_signal}}</nobr></th>
|
|
68
|
-
<th style="text-align:center"><nobr>{{row.f_snr}}</nobr></th>
|
|
69
|
-
<th style="text-align:center"><nobr>{{row.f_batterylevel}}</nobr></th>
|
|
70
|
-
<th style="text-align:center"><nobr>{{row.f_lowlithiumbattery ? ((row.f_lowlithiumbattery - 0) == 0 ? '正常' : '异常') : '未知'}}</nobr></th>
|
|
71
|
-
<th style="text-align:center"><nobr>{{row.f_networkshutvalve}}</nobr></th>
|
|
72
|
-
<!-- <th style="text-align:center"><nobr>{{row.f_wmprepaytype}}</nobr></th>-->
|
|
73
|
-
<!-- <th style="text-align:center"><nobr>{{row.f_moneystate}}</nobr></th>-->
|
|
74
|
-
<th style="text-align:center"><nobr>{{row.f_magneticInterference}}</nobr></th>
|
|
75
|
-
<th style="text-align:center"><nobr>{{row.f_compensateState}}</nobr></th>
|
|
76
|
-
</tr>
|
|
77
|
-
</template>
|
|
78
|
-
<template partial='foot'></template>
|
|
79
|
-
</data-grid>
|
|
80
|
-
</criteria-paged>
|
|
81
|
-
</div>
|
|
82
|
-
</div>
|
|
83
|
-
</template>
|
|
84
|
-
|
|
85
|
-
<script>
|
|
86
|
-
import {PagedList} from 'vue-client'
|
|
87
|
-
|
|
88
|
-
export default {
|
|
89
|
-
title: 'WatchCollection',
|
|
90
|
-
data () {
|
|
91
|
-
return {
|
|
92
|
-
model: new PagedList('rs/sql/iot_getNewLoseUserQuery', 50)
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
|
-
props: ['row'],
|
|
96
|
-
ready () {
|
|
97
|
-
this.$refs.paged.$refs.criteria.search()
|
|
98
|
-
},
|
|
99
|
-
methods: {
|
|
100
|
-
search (args) {
|
|
101
|
-
args.condition = `${args.condition} and f_userfiles_id='${this.row.f_userfiles_id}'`
|
|
102
|
-
this.model.search(args.condition, args.model)
|
|
103
|
-
}
|
|
104
|
-
},
|
|
105
|
-
watch: {
|
|
106
|
-
// 监听查询对象
|
|
107
|
-
'row' (val) {
|
|
108
|
-
if (this.row != null) {
|
|
109
|
-
this.$refs.paged.$refs.criteria.search()
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
</script>
|
|
115
|
-
|
|
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><nobr>上报日期</nobr></th>
|
|
40
|
+
<th><nobr>表内剩余金额</nobr></th>
|
|
41
|
+
<th><nobr>本次抄表底数</nobr></th>
|
|
42
|
+
<th><nobr>阀门状态</nobr></th>
|
|
43
|
+
<th><nobr>上报类型</nobr></th>
|
|
44
|
+
<th><nobr>系统接收时间</nobr></th>
|
|
45
|
+
<th><nobr>表内累计充值金额</nobr></th>
|
|
46
|
+
<th><nobr>噪音强度</nobr></th>
|
|
47
|
+
<th><nobr>信噪比</nobr></th>
|
|
48
|
+
<th><nobr>电压</nobr></th>
|
|
49
|
+
<th><nobr>电压状态</nobr></th>
|
|
50
|
+
<th><nobr>阀门强制状态</nobr></th>
|
|
51
|
+
<!-- <th><nobr>计量类型</nobr></th>-->
|
|
52
|
+
<!-- <th><nobr>金额状态</nobr></th>-->
|
|
53
|
+
|
|
54
|
+
<th><nobr>磁干扰异常</nobr></th>
|
|
55
|
+
<th><nobr>补偿状态</nobr></th>
|
|
56
|
+
</tr>
|
|
57
|
+
</template>
|
|
58
|
+
<template partial='body' partial='list'>
|
|
59
|
+
<tr >
|
|
60
|
+
<td style="text-align:center"><nobr>{{row.f_hand_date}}</nobr></td>
|
|
61
|
+
<th style="text-align:center"><nobr>{{row.f_meterbalanceamt}}</nobr></th>
|
|
62
|
+
<th style="text-align:center"><nobr>{{row.f_tablebase}}</nobr></th>
|
|
63
|
+
<th style="text-align:center"><nobr>{{row.f_valvestate == 0 ? '开阀' : '关阀'}}</nobr></th>
|
|
64
|
+
<th style="text-align:center"><nobr>{{row.f_upload_type}}</nobr></th>
|
|
65
|
+
<th style="text-align:center"><nobr>{{row.f_insert_date}}</nobr></th>
|
|
66
|
+
<th style="text-align:center"><nobr>{{row.f_meterdebitamt}}</nobr></th>
|
|
67
|
+
<th style="text-align:center"><nobr>{{row.f_signal}}</nobr></th>
|
|
68
|
+
<th style="text-align:center"><nobr>{{row.f_snr}}</nobr></th>
|
|
69
|
+
<th style="text-align:center"><nobr>{{row.f_batterylevel}}</nobr></th>
|
|
70
|
+
<th style="text-align:center"><nobr>{{row.f_lowlithiumbattery ? ((row.f_lowlithiumbattery - 0) == 0 ? '正常' : '异常') : '未知'}}</nobr></th>
|
|
71
|
+
<th style="text-align:center"><nobr>{{row.f_networkshutvalve}}</nobr></th>
|
|
72
|
+
<!-- <th style="text-align:center"><nobr>{{row.f_wmprepaytype}}</nobr></th>-->
|
|
73
|
+
<!-- <th style="text-align:center"><nobr>{{row.f_moneystate}}</nobr></th>-->
|
|
74
|
+
<th style="text-align:center"><nobr>{{row.f_magneticInterference}}</nobr></th>
|
|
75
|
+
<th style="text-align:center"><nobr>{{row.f_compensateState}}</nobr></th>
|
|
76
|
+
</tr>
|
|
77
|
+
</template>
|
|
78
|
+
<template partial='foot'></template>
|
|
79
|
+
</data-grid>
|
|
80
|
+
</criteria-paged>
|
|
81
|
+
</div>
|
|
82
|
+
</div>
|
|
83
|
+
</template>
|
|
84
|
+
|
|
85
|
+
<script>
|
|
86
|
+
import {PagedList} from 'vue-client'
|
|
87
|
+
|
|
88
|
+
export default {
|
|
89
|
+
title: 'WatchCollection',
|
|
90
|
+
data () {
|
|
91
|
+
return {
|
|
92
|
+
model: new PagedList('rs/sql/iot_getNewLoseUserQuery', 50)
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
props: ['row'],
|
|
96
|
+
ready () {
|
|
97
|
+
this.$refs.paged.$refs.criteria.search()
|
|
98
|
+
},
|
|
99
|
+
methods: {
|
|
100
|
+
search (args) {
|
|
101
|
+
args.condition = `${args.condition} and f_userfiles_id='${this.row.f_userfiles_id}'`
|
|
102
|
+
this.model.search(args.condition, args.model)
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
watch: {
|
|
106
|
+
// 监听查询对象
|
|
107
|
+
'row' (val) {
|
|
108
|
+
if (this.row != null) {
|
|
109
|
+
this.$refs.paged.$refs.criteria.search()
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
</script>
|
|
115
|
+
|