|
@@ -52,6 +52,17 @@
|
|
|
allowClear></v-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
+ <a-form-item label="单据来源">
|
|
|
+ <v-select
|
|
|
+ v-model="queryParam.purchaseBillSource"
|
|
|
+ ref="purchaseBillSource"
|
|
|
+ id="purchaseOrderList-purchaseBillSource"
|
|
|
+ code="PURCHASE_SOURCE"
|
|
|
+ placeholder="请选择单据来源"
|
|
|
+ allowClear></v-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
|
<span class="table-page-search-submitButtons">
|
|
|
<a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="purchaseOrderList-refresh">查询</a-button>
|
|
@@ -147,6 +158,7 @@ export default {
|
|
|
purchaseTargetType: undefined,
|
|
|
billStatus: undefined,
|
|
|
financialStatus: undefined,
|
|
|
+ purchaseBillSource: undefined,
|
|
|
beginDate: '',
|
|
|
endDate: ''
|
|
|
},
|
|
@@ -260,6 +272,7 @@ export default {
|
|
|
this.queryParam.purchaseTargetType = undefined
|
|
|
this.queryParam.billStatus = undefined
|
|
|
this.queryParam.financialStatus = undefined
|
|
|
+ this.queryParam.purchaseBillSource = undefined
|
|
|
this.$refs.table.refresh(true)
|
|
|
},
|
|
|
filterOption (input, option) {
|