manage-client 4.1.146 → 4.1.147
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
|
@@ -75,6 +75,13 @@
|
|
|
75
75
|
<input type="number" style="width:30%" class="input_search" title="小于等于" v-model="model.f_oughtamount_big"
|
|
76
76
|
condition="f_oughtamount <= '{}' " placeholder="小于等于">
|
|
77
77
|
</div>
|
|
78
|
+
<div class="col-sm-2 form-group">
|
|
79
|
+
<label class="font_normal_body">失联天数</label>
|
|
80
|
+
<input type="number" style="width:30%" class="input_search" title="大于等于" v-model="model.f_day_small"
|
|
81
|
+
condition="f_day >= '{}' " placeholder="大于等于">
|
|
82
|
+
<input type="number" style="width:30%" class="input_search" title="小于等于" v-model="model.f_day_big"
|
|
83
|
+
condition="f_day <= '{}' " placeholder="小于等于">
|
|
84
|
+
</div>
|
|
78
85
|
<div class="col-sm-2 form-group">
|
|
79
86
|
<label class="font_normal_body">气表品牌</label>
|
|
80
87
|
<v-select :value.sync="model.f_meter_brand" multiple="true"
|
|
@@ -169,6 +176,17 @@
|
|
|
169
176
|
close-on-select>
|
|
170
177
|
</v-select>
|
|
171
178
|
</div>
|
|
179
|
+
<div class="col-sm-2 form-group">
|
|
180
|
+
<label class="font_normal_body">是否失联</label>
|
|
181
|
+
<v-select style="width:60%"
|
|
182
|
+
v-model="model.f_sl_state"
|
|
183
|
+
placeholder='是否失联'
|
|
184
|
+
:value.sync="model.f_sl_state"
|
|
185
|
+
:options='$parent.$parent.isPush'
|
|
186
|
+
condition="f_sl_state = '{}'"
|
|
187
|
+
close-on-select>
|
|
188
|
+
</v-select>
|
|
189
|
+
</div>
|
|
172
190
|
<div class="col-sm-2 form-group">
|
|
173
191
|
<label class="font_normal_body">备注信息</label>
|
|
174
192
|
<input style="width:60%" type="text" class="input_search"
|
|
@@ -229,6 +247,12 @@
|
|
|
229
247
|
<th style="text-align:center">
|
|
230
248
|
<nobr>最后一次通讯时间</nobr>
|
|
231
249
|
</th>
|
|
250
|
+
<th style="text-align:center">
|
|
251
|
+
<nobr>是否失联</nobr>
|
|
252
|
+
</th>
|
|
253
|
+
<th style="text-align:center">
|
|
254
|
+
<nobr>失联天数</nobr>
|
|
255
|
+
</th>
|
|
232
256
|
<th style="text-align:center">
|
|
233
257
|
<nobr>电池电量</nobr>
|
|
234
258
|
</th>
|
|
@@ -294,6 +318,12 @@
|
|
|
294
318
|
<td style="text-align:center">
|
|
295
319
|
<nobr>{{row.f_insert_date}}</nobr>
|
|
296
320
|
</td>
|
|
321
|
+
<td style="text-align:center">
|
|
322
|
+
<nobr>{{row.f_sl_state}}</nobr>
|
|
323
|
+
</td>
|
|
324
|
+
<td style="text-align:center">
|
|
325
|
+
<nobr>{{row.f_day}}</nobr>
|
|
326
|
+
</td>
|
|
297
327
|
<td style="text-align:center">
|
|
298
328
|
<nobr>{{row.f_electricity}}</nobr>
|
|
299
329
|
</td>
|
|
@@ -390,6 +420,8 @@
|
|
|
390
420
|
"f_meter_brand":"气表品牌",
|
|
391
421
|
"f_hand_date":"抄表日期",
|
|
392
422
|
"f_insert_date":"最后一次通讯时间",
|
|
423
|
+
"f_sl_state":"是否失联",
|
|
424
|
+
"f_day":"失联天数",
|
|
393
425
|
"f_electricity":"电池电量",
|
|
394
426
|
"f_batterylevel":"电池电压",
|
|
395
427
|
"f_signal":"信号强度",
|
|
@@ -590,6 +622,9 @@
|
|
|
590
622
|
isread() {
|
|
591
623
|
return [{label: '全部', value: ''}, ...this.$appdata.getParam('处理状态')]
|
|
592
624
|
},
|
|
625
|
+
isPush() {
|
|
626
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('是否失联')]
|
|
627
|
+
},
|
|
593
628
|
GetErrorLevel() {
|
|
594
629
|
return [{label: '全部', value: ''}, ...this.$appdata.getParam('异常级别')]
|
|
595
630
|
},
|