manage-client 4.0.69 → 4.0.70

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.
@@ -318,6 +318,17 @@
318
318
  <!-- condition="f_bgl = '{}'"-->
319
319
  <!-- close-on-select></v-select>-->
320
320
  <!-- </div>-->
321
+ <div class="col-sm-2 form-group">
322
+ <label class="font_normal_body">使用类型</label>
323
+ <v-select :value.sync="model.f_usetype"
324
+ v-model="model.f_usetype"
325
+ :options='$parent.$parent.usetype'
326
+ placeholder='使用类型'
327
+ style="width:60%"
328
+ close-on-select
329
+ condition="f_usetype = '{}'">
330
+ </v-select>
331
+ </div>
321
332
  <div class="col-sm-2 form-group">
322
333
  <label class="font_normal_body">总&ensp;分&ensp;表</label>
323
334
  <v-select :value.sync="model.f_totalsplit_type"
@@ -511,6 +522,9 @@
511
522
  <th>
512
523
  <nobr>剩余抵扣金额</nobr>
513
524
  </th>
525
+ <th>
526
+ <nobr>使用类型</nobr>
527
+ </th>
514
528
  <th>
515
529
  <nobr>附件</nobr>
516
530
  </th>
@@ -676,6 +690,9 @@
676
690
  <td style="text-align: center;">
677
691
  <nobr>{{ row.f_remaining_deduct_amount }}</nobr>
678
692
  </td>
693
+ <td style="text-align: center;">
694
+ <nobr>{{ row.f_usetype }}</nobr>
695
+ </td>
679
696
  <td style="text-align: center;">
680
697
  <nobr>
681
698
  <button class="button_search button_spacing width-60" @click.stop="$parent.$parent.$parent.view(row)">
@@ -1338,6 +1355,9 @@ export default {
1338
1355
  usertypes() {
1339
1356
  return [{label: '全部', value: ''}, ...this.$appdata.getParam('用户类型')]
1340
1357
  },
1358
+ usetype() {
1359
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('使用类型')]
1360
+ },
1341
1361
  accountsState() {
1342
1362
  return [{label: '全部', value: ''}, ...this.$appdata.getParam('下账状态')]
1343
1363
  },
@@ -182,6 +182,17 @@
182
182
  condition="f_gasproperties = '{}'"
183
183
  close-on-select></v-select>
184
184
  </div>
185
+ <div class="col-sm-2 form-group">
186
+ <label class="font_normal_body">使用类型</label>
187
+ <v-select :value.sync="model.f_usetype"
188
+ v-model="model.f_usetype"
189
+ :options='$parent.$parent.usetype'
190
+ placeholder='使用类型'
191
+ style="width:60%"
192
+ close-on-select
193
+ condition="f_usetype = '{}'">
194
+ </v-select>
195
+ </div>
185
196
  </div>
186
197
  </div>
187
198
  </criteria>
@@ -212,6 +223,7 @@
212
223
  <th><nobr>期间充值金额</nobr></th>
213
224
  <th><nobr>期末余额</nobr></th>
214
225
  <th><nobr>用气状态</nobr></th>
226
+ <th><nobr>使用类型</nobr></th>
215
227
  <th><nobr>是否换表</nobr></th>
216
228
  <th><nobr>首次抄表时间</nobr></th>
217
229
  <th><nobr>最后通讯日期</nobr></th>
@@ -246,6 +258,7 @@
246
258
  <th style="text-align:center"><nobr>{{row.f_collection}}</nobr></th>
247
259
  <th style="text-align:center"><nobr>{{row.f_curbalance}}</nobr></th>
248
260
  <th style="text-align:center"><nobr>{{row.f_gas_state}}</nobr></th>
261
+ <th style="text-align:center"><nobr>{{row.f_usetype}}</nobr></th>
249
262
  <th style="text-align:center"><nobr>{{row.f_changetable_state}}</nobr></th>
250
263
  <th style="text-align:center"><nobr>{{row.f_first_input_date}}</nobr></th>
251
264
  <th style="text-align:center"><nobr>{{row.f_input_date}}</nobr></th>
@@ -506,6 +519,9 @@
506
519
  tableState() {
507
520
  return [{label: '全部', value: ''}, ...this.$appdata.getParam('气表状态')]
508
521
  },
522
+ usetype() {
523
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('使用类型')]
524
+ },
509
525
  gasState() {
510
526
  return [{label:'正常', value:'正常'},
511
527
  {label:'异常', value:'异常'},