manage-client 4.1.114 → 4.1.115

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": "manage-client",
3
- "version": "4.1.114",
3
+ "version": "4.1.115",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -24,6 +24,14 @@
24
24
  :show-reset-button="reset">
25
25
  </datepicker>
26
26
  </div>
27
+ <div class="col-sm-2 form-group">
28
+ <label class="font_normal_body" title="参数:付款方式查询用">付款方式</label>
29
+ <v-select :value.sync="model.f_payment" multiple
30
+ v-model="model.f_payment"
31
+ :options='$parent.$parent.payment' placeholder='请选择'
32
+ condition="f_payment in {}"
33
+ close-on-select></v-select>
34
+ </div>
27
35
  <div class="col-sm-2 form-group">
28
36
  <label class="font_normal_body" title="参数:票据类型">票据类型</label>
29
37
  <v-select :value.sync="model.f_bill_type" multiple
@@ -176,6 +184,9 @@ export default {
176
184
  }
177
185
  },
178
186
  computed: {
187
+ payment () {
188
+ return [...this.$appdata.getParam('付款方式查询用')]
189
+ },
179
190
  billType () {
180
191
  return [...this.$appdata.getParam('票据类型')]
181
192
  }