apply-clients 3.3.40 → 3.3.44

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.
@@ -62,6 +62,12 @@
62
62
  v-on:keyup.enter="$parent.$parent.search()"
63
63
  condition="f_address like '%{}%'">
64
64
  </div>
65
+ <div class="form-group col-sm-3">
66
+ <label class="font_normal_body">表&emsp;&emsp;号:</label>
67
+ <input type="text" style="width:60%" class="input_search" placeholder='表号' v-model="model.f_meternumber"
68
+ v-on:keyup.enter="$parent.$parent.search()"
69
+ condition="f_meternumber like '%{}%'">
70
+ </div>
65
71
  <div class="form-group col-sm-3">
66
72
  <label class="font_normal_body">报建类型:</label>
67
73
  <v-select
@@ -311,7 +317,7 @@ export default {
311
317
  computed: {
312
318
  getCondition () {
313
319
  return {
314
- condition: this.$refs.cp.$refs.cri.condition + ` and f_orgid = '${this.curorgid[0]}'`
320
+ condition: this.model.condition
315
321
  }
316
322
  }
317
323
  }