safecheck-client 3.0.33-7 → 3.0.33-9

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.
@@ -81,6 +81,21 @@
81
81
  >
82
82
  </v-select>
83
83
  </div>
84
+ <div class="form-group col-sm-4" >
85
+ <label class="font_normal_body">表具状态:</label>
86
+ <v-select
87
+ class="select select_list"
88
+ :value.sync="model.f_table_state"
89
+ v-model="model.f_table_state"
90
+ :options='$parent.$parent.tableStates'
91
+ placeholder='请选择'
92
+ condition="uf.f_table_state='{}'"
93
+ :search="false"
94
+ close-on-select
95
+ value-single
96
+ >
97
+ </v-select>
98
+ </div>
84
99
  <div class="form-group col-sm-4" >
85
100
  <label class="font_normal_body">用气性质:</label>
86
101
  <v-select
@@ -402,6 +417,7 @@
402
417
  showCondtion:false,
403
418
  userTypes:[],//用户类型
404
419
  userStates:[],//用户状态
420
+ tableStates:[],//表具状态
405
421
  gasproperties:[],//用气性质
406
422
  meter_classifys:[],//气表类型
407
423
  hasHousehold:[{label:"全部",value:""},{label:"已入户",value:"已入户"},{label:"未入户",value:"未入户"}],
@@ -520,7 +536,8 @@
520
536
  value: ''
521
537
  }, ...this.$appdata.getParam('用户类型')] : [{label: '全部', value: ''}]
522
538
 
523
- this.userStates=this.$appdata.getParam('安检用户状态') ? [...this.$appdata.getParam('安检用户状态')] : []
539
+ this.userStates=this.$appdata.getParam('安检用户状态') ? [{label: '全部', value: ''},...this.$appdata.getParam('安检用户状态')] : [{label: '全部', value: ''}]
540
+ this.tableStates=this.$appdata.getParam('安检表具状态') ? [{label: '全部', value: ''},...this.$appdata.getParam('安检表具状态')] : [{label: '全部', value: ''}]
524
541
  this.gasproperties=this.$appdata.getParam('用气性质') ? [{
525
542
  label: '全部',
526
543
  value: ''