|
|
|
@ -521,6 +521,7 @@ export default {
|
|
|
|
|
this.filterQuery.startTime = null;
|
|
|
|
|
this.filterQuery.endTime = null;
|
|
|
|
|
}
|
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
handleSizeChange(val) {
|
|
|
|
@ -532,7 +533,6 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
handleSelectionChange(val) {
|
|
|
|
|
console.log(val);
|
|
|
|
|
this.multipleSelection = val;
|
|
|
|
|
},
|
|
|
|
|
getStorageName(code) {
|
|
|
|
@ -612,7 +612,6 @@ export default {
|
|
|
|
|
this.filterQuery.customerId = store.getters.customerId;
|
|
|
|
|
filterOrder(this.filterQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
console.log(response)
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
@ -635,7 +634,6 @@ export default {
|
|
|
|
|
refresgOrderDetail() {
|
|
|
|
|
orderDetail(this.detailQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
console.log(response)
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.detailList = response.data || [];
|
|
|
|
|
})
|
|
|
|
@ -675,7 +673,6 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
selectUnit(row) {
|
|
|
|
|
console.log(row.id);
|
|
|
|
|
this.unitUpdateQuery.id = this.curIndex;
|
|
|
|
|
this.unitUpdateQuery.fromCorp = row.name;
|
|
|
|
|
this.unitUpdateQuery.fromCorpId = row.unitid;
|
|
|
|
@ -768,7 +765,6 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uploadOrderDialog(value) {
|
|
|
|
|
console.log(value.id + "---" + value.orderid);
|
|
|
|
|
this.uploadQuery = {
|
|
|
|
|
orderId: value.id,
|
|
|
|
|
};
|
|
|
|
|