|
@@ -5,17 +5,17 @@
|
|
|
<div ref="tableSearch" class="table-page-search-wrapper">
|
|
|
<a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
|
|
|
<a-row :gutter="15">
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
+ <a-col :md="5" :sm="24">
|
|
|
<a-form-item label="产品编码">
|
|
|
<a-input id="bulkWarehousingOrderList-productCode" v-model.trim="queryParam.productCode" allowClear placeholder="请输入产品编码"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
+ <a-col :md="5" :sm="24">
|
|
|
<a-form-item label="关联单号">
|
|
|
<a-input id="bulkWarehousingOrderList-relationNo" v-model.trim="queryParam.relationNo" allowClear placeholder="请输入关联单号"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
<a-form-item label="状态">
|
|
|
<v-select
|
|
|
v-model="queryParam.state"
|
|
@@ -27,7 +27,12 @@
|
|
|
></v-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
+ <a-col :md="5" :sm="24">
|
|
|
+ <a-form-item label="金蝶单号">
|
|
|
+ <a-input id="bulkWarehousingOrderList-kingdeeNo" v-model.trim="queryParam.kingdeeNo" allowClear placeholder="请输入金蝶单号"/>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :md="5" :sm="24">
|
|
|
<span class="table-page-search-submitButtons">
|
|
|
<a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="bulkWarehousingOrderList-refresh">查询</a-button>
|
|
|
<a-button style="margin-left: 5px" @click="resetSearchForm()" :disabled="disabled" id="bulkWarehousingOrderList-reset">重置</a-button>
|
|
@@ -124,7 +129,8 @@ export default {
|
|
|
queryParam: {
|
|
|
productCode: '',
|
|
|
relationNo: '',
|
|
|
- state: undefined
|
|
|
+ state: undefined,
|
|
|
+ kingdeeNo: ''
|
|
|
},
|
|
|
loading: false,
|
|
|
// 加载数据方法 必须为 Promise 对象
|
|
@@ -224,6 +230,7 @@ export default {
|
|
|
resetSearchForm () {
|
|
|
this.queryParam.productCode = ''
|
|
|
this.queryParam.relationNo = ''
|
|
|
+ this.queryParam.kingdeeNo = ''
|
|
|
this.queryParam.state = undefined
|
|
|
this.$refs.table.refresh(true)
|
|
|
},
|