manage-client 4.1.110 → 4.1.111
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
|
@@ -26,6 +26,14 @@
|
|
|
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>
|
|
29
37
|
<div class="col-sm-4">
|
|
30
38
|
<label class="font_normal_body"> 公司 </label>
|
|
31
39
|
<right-tree @re-res="$parent.$parent.getRes"></right-tree>
|
|
@@ -250,6 +258,9 @@
|
|
|
250
258
|
}
|
|
251
259
|
},
|
|
252
260
|
computed: {
|
|
261
|
+
payment() {
|
|
262
|
+
return [...this.$appdata.getParam('付款方式查询')]
|
|
263
|
+
},
|
|
253
264
|
usertypes() {
|
|
254
265
|
return [{label: ' 全部 ', value: ''}, ...this.$appdata.getParam('用户类型')]
|
|
255
266
|
}
|