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
|
@@ -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
|
}
|