sale-client 4.0.95 → 4.0.96

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "4.0.95",
3
+ "version": "4.0.96",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -102,6 +102,16 @@
102
102
  :options='$parent.$parent.bankname'
103
103
  close-on-select ></v-select>
104
104
  </div>
105
+ <div class="col-sm-2 form-group">
106
+ <label for="f_meter_classify" class="font_normal_body">气表类型:</label>
107
+ <v-select id="f_meter_classify"
108
+ v-model="model.f_meter_classify"
109
+ placeholder='气表类型'
110
+ condition="f_meter_classify = '{}'"
111
+ :value.sync="model.f_meter_classify"
112
+ :options='$parent.$parent.meter_classify'
113
+ close-on-select ></v-select>
114
+ </div>
105
115
  <!--<div class="col-sm-2 form-group">-->
106
116
  <!--<label class="font_normal_body">订单状态</label>-->
107
117
  <!--<v-select-->
@@ -249,6 +259,7 @@
249
259
  'f_user_name': '客户姓名',
250
260
  'f_user_phone': '客户电话',
251
261
  'f_address': '客户地址',
262
+ 'f_meter_classify': '气表类型',
252
263
  'f_bank_name': '缴费银行',
253
264
  'f_terminal_num': '终端编号',
254
265
  'f_transaction_id': '订单号',
@@ -265,7 +276,11 @@
265
276
  },
266
277
  condition2: '',
267
278
  other: [],
268
- footer: []
279
+ footer: [],
280
+ meter_classify: this.$appdata.getParam('气表类型') ? [{
281
+ label: '全部',
282
+ value: ''
283
+ }, ...this.$appdata.getParam('气表类型')] : []
269
284
  }
270
285
  },
271
286
  props: [],