|
@@ -31,7 +31,7 @@
|
|
|
</a-col> -->
|
|
|
<a-col :md="6" :sm="8">
|
|
|
<a-form-item label="预发货日期">
|
|
|
- <a-range-picker
|
|
|
+ <a-range-picker
|
|
|
:placeholder="['开始时间', '结束时间']"
|
|
|
format="YYYY-MM-DD"
|
|
|
style="width: 100%"
|
|
@@ -116,10 +116,10 @@ export default {
|
|
|
queryParam: {
|
|
|
itemNumber:'',
|
|
|
customerAbbreviation:'',
|
|
|
- preDeliveryDate:'',
|
|
|
smallPo:'',
|
|
|
distributionPoint:''
|
|
|
},
|
|
|
+ preDeliveryDate:[],
|
|
|
selectedRowKeys: [], // 勾选航
|
|
|
selectedRows: [],
|
|
|
selectedNumber:[],//勾选条数
|
|
@@ -302,8 +302,10 @@ export default {
|
|
|
this.toggleSearchStatus = false
|
|
|
this.$nextTick(() => {
|
|
|
this.queryParam.pageSize = 100
|
|
|
+ this.confirmLoading = true
|
|
|
//if (this.queryParam.preDeliveryDate != undefined && this.queryParam.preDeliveryDate != "")
|
|
|
querySyPreAssembledPackingList(this.queryParam).then(res => {
|
|
|
+ this.confirmLoading = false
|
|
|
if (res.success) {
|
|
|
this.advancePackingListData = res.result.records;
|
|
|
this.pagination = {
|
|
@@ -321,10 +323,10 @@ export default {
|
|
|
this.queryParam = {
|
|
|
itemNumber:'',
|
|
|
customerAbbreviation:'',
|
|
|
- preDeliveryDate:'',
|
|
|
smallPo:'',
|
|
|
distributionPoint:''
|
|
|
}
|
|
|
+ this.preDeliveryDate = []
|
|
|
this.searchQuery()
|
|
|
this.defulatSelect()
|
|
|
// this.getShipmentList()
|
|
@@ -385,6 +387,7 @@ export default {
|
|
|
this.advancePackingListModVis = false
|
|
|
this.error = []
|
|
|
this.errorFather = []
|
|
|
+ this.preDeliveryDate = []
|
|
|
this.defulatSelect()
|
|
|
},
|
|
|
handleCancel() {
|
|
@@ -407,7 +410,6 @@ export default {
|
|
|
this.selectedNumber = 0
|
|
|
},
|
|
|
deliveryDateChange(value, dateString) {
|
|
|
-
|
|
|
this.queryParam.beginTime = dateString[0]
|
|
|
this.queryParam.endTime = dateString[1]
|
|
|
},
|