|
@@ -29,6 +29,15 @@
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
|
|
|
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
|
+ <a-form-item label="发货情况">
|
|
|
|
+ <a-select v-model="queryParam.status" style="width: 200px" placeholder="请选择发货情况" >
|
|
|
|
+ <a-select-option value="n">超量发货</a-select-option>
|
|
|
|
+ <a-select-option value="y">正常</a-select-option>
|
|
|
|
+ </a-select>
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+
|
|
<a-col :md="6" :sm="8">
|
|
<a-col :md="6" :sm="8">
|
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
|
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
|
|
@@ -263,6 +272,7 @@ export default {
|
|
queryParam: {
|
|
queryParam: {
|
|
documentNo: '',
|
|
documentNo: '',
|
|
customer: '',
|
|
customer: '',
|
|
|
|
+ status:'',
|
|
pageNo: ''
|
|
pageNo: ''
|
|
},
|
|
},
|
|
// 分页
|
|
// 分页
|
|
@@ -331,6 +341,8 @@ export default {
|
|
searchReset() {
|
|
searchReset() {
|
|
this.queryParam.documentNo = ''
|
|
this.queryParam.documentNo = ''
|
|
this.queryParam.customer = ''
|
|
this.queryParam.customer = ''
|
|
|
|
+ this.queryParam.status = ''
|
|
|
|
+ this.queryParam.pageNo = ''
|
|
this.getShipData()
|
|
this.getShipData()
|
|
},
|
|
},
|
|
|
|
|
|
@@ -339,6 +351,7 @@ export default {
|
|
this.referShipDetModVis = false
|
|
this.referShipDetModVis = false
|
|
this.selectedRowKeys = []
|
|
this.selectedRowKeys = []
|
|
this.data = []
|
|
this.data = []
|
|
|
|
+ this.queryParam = {}
|
|
this.getShipData()
|
|
this.getShipData()
|
|
},
|
|
},
|
|
handleCancel() {
|
|
handleCancel() {
|