manage-client 4.1.112 → 4.1.113
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
|
@@ -27,20 +27,12 @@
|
|
|
27
27
|
</datepicker>
|
|
28
28
|
</div>
|
|
29
29
|
<div class="col-sm-4">
|
|
30
|
-
<label class="font_normal_body" title="
|
|
30
|
+
<label class="font_normal_body" title="参数:自助付款方式查询">付款方式</label>
|
|
31
31
|
<v-select :value.sync="model.f_payment" multiple
|
|
32
32
|
v-model="model.f_payment"
|
|
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>
|
|
44
36
|
</div>
|
|
45
37
|
<div class="col-sm-4">
|
|
46
38
|
<label class="font_normal_body"> 公司 </label>
|
|
@@ -267,10 +259,7 @@
|
|
|
267
259
|
},
|
|
268
260
|
computed: {
|
|
269
261
|
payment() {
|
|
270
|
-
return [...this.$appdata.getParam('
|
|
271
|
-
},
|
|
272
|
-
bankname() {
|
|
273
|
-
return [...this.$appdata.getParam('银行名称')]
|
|
262
|
+
return [...this.$appdata.getParam('自助付款方式查询')]
|
|
274
263
|
},
|
|
275
264
|
usertypes() {
|
|
276
265
|
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('用户类型')]
|