manage-client 4.1.110 → 4.1.112

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.110",
3
+ "version": "4.1.112",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -26,6 +26,22 @@
26
26
  :show-reset-button="reset">
27
27
  </datepicker>
28
28
  </div>
29
+ <div class="col-sm-4">
30
+ <label class="font_normal_body" title="参数:付款方式查询">付款方式</label>
31
+ <v-select :value.sync="model.f_payment" multiple
32
+ v-model="model.f_payment"
33
+ :options='$parent.$parent.payment' placeholder='请选择'
34
+ condition="f_payment in {}"
35
+ close-on-select></v-select>
36
+ </div>
37
+ <div class="col-sm-4">
38
+ <label class="font_normal_body" title="参数:银行名称">银行名称</label>
39
+ <v-select :value.sync="model.f_bank_name" multiple
40
+ v-model="model.f_bank_name"
41
+ :options='$parent.$parent.bankname' placeholder='请选择'
42
+ condition="f_bank_name in {}"
43
+ close-on-select></v-select>
44
+ </div>
29
45
  <div class="col-sm-4">
30
46
  <label class="font_normal_body">&nbsp;&nbsp;&nbsp;公司&nbsp;&nbsp;&nbsp;</label>
31
47
  <right-tree @re-res="$parent.$parent.getRes"></right-tree>
@@ -250,6 +266,12 @@
250
266
  }
251
267
  },
252
268
  computed: {
269
+ payment() {
270
+ return [...this.$appdata.getParam('付款方式查询')]
271
+ },
272
+ bankname() {
273
+ return [...this.$appdata.getParam('银行名称')]
274
+ },
253
275
  usertypes() {
254
276
  return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('用户类型')]
255
277
  }