manage-client 4.1.111 → 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
|
@@ -33,6 +33,14 @@
|
|
|
33
33
|
:options='$parent.$parent.payment' placeholder='请选择'
|
|
34
34
|
condition="f_payment in {}"
|
|
35
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>
|
|
36
44
|
</div>
|
|
37
45
|
<div class="col-sm-4">
|
|
38
46
|
<label class="font_normal_body"> 公司 </label>
|
|
@@ -261,6 +269,9 @@
|
|
|
261
269
|
payment() {
|
|
262
270
|
return [...this.$appdata.getParam('付款方式查询')]
|
|
263
271
|
},
|
|
272
|
+
bankname() {
|
|
273
|
+
return [...this.$appdata.getParam('银行名称')]
|
|
274
|
+
},
|
|
264
275
|
usertypes() {
|
|
265
276
|
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('用户类型')]
|
|
266
277
|
}
|