manage-client 3.2.180 → 3.2.182

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.
@@ -148,6 +148,22 @@
148
148
  :show-reset-button="reset">
149
149
  </datepicker>
150
150
  </div>
151
+ <div class="col-sm-2 form-group">
152
+ <label class="font_normal_body">用气类型</label>
153
+ <v-select :value.sync="model.f_user_nature"
154
+ v-model="model.f_user_nature"
155
+ :options="$parent.$parent.usernatures"
156
+ condition="ss.f_user_nature = '{}'"
157
+ close-on-select></v-select>
158
+ </div>
159
+ <div class="col-sm-2 form-group">
160
+ <label class="font_normal_body">用气性质</label>
161
+ <v-select :value.sync="model.f_gasproperties"
162
+ v-model="model.f_gasproperties"
163
+ :options="$parent.$parent.gasProperties"
164
+ condition="ss.f_gasproperties = '{}'"
165
+ close-on-select></v-select>
166
+ </div>
151
167
  </div>
152
168
  </div>
153
169
  </criteria>
@@ -463,6 +479,12 @@
463
479
  pricetypes() {
464
480
  return [{label: '全部', value: ''}, ...this.$appdata.getParam('气价类型')]
465
481
  },
482
+ usernatures(){
483
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('用气类型')]
484
+ },
485
+ gasProperties(){
486
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('用气性质')]
487
+ },
466
488
  gasState() {
467
489
  return [{label:'正常', value:'正常'},
468
490
  {label:'异常', value:'异常'},