|
|
|
@ -5,7 +5,7 @@
|
|
|
|
|
<!-- <div class="add_row">发车批次: LQGX</div> --> |
|
|
|
|
<div class="add_row"> |
|
|
|
|
<!-- 列表模块 --> |
|
|
|
|
<div style="width: 47%"> |
|
|
|
|
<div style="width: 49%"> |
|
|
|
|
<div class="add_row_title">运单池</div> |
|
|
|
|
<div v-if="!search"> |
|
|
|
|
<el-form :inline="true" label-width="80px" :model="details.oldQuery" class="el-fr-d"> |
|
|
|
@ -91,7 +91,7 @@
|
|
|
|
|
background |
|
|
|
|
@size-change="sizeChange" |
|
|
|
|
@current-change="currentChange" |
|
|
|
|
:current-page="zeroAdditionalRecordingInfo.oldPage.currentPage" |
|
|
|
|
:current-page="zeroAdditionalRecordingInfo.oldPage.pageNum" |
|
|
|
|
:page-sizes="[30, 50, 80, 120]" |
|
|
|
|
:page-size="zeroAdditionalRecordingInfo.oldPage.pageSize" |
|
|
|
|
layout="total, sizes, prev, pager, next, jumper" |
|
|
|
@ -102,7 +102,7 @@
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<!-- 列表模块 --> |
|
|
|
|
<div style="width: 47%"> |
|
|
|
|
<div style="width: 49%"> |
|
|
|
|
<div class="add_row_title">调度池</div> |
|
|
|
|
<div v-if="!search"> |
|
|
|
|
<el-form :inline="true" label-width="80px" :model="details.newQuery" class="el-fr-d"> |
|
|
|
@ -208,8 +208,10 @@ import dayjs from 'dayjs';
|
|
|
|
|
import { mapGetters } from 'vuex'; |
|
|
|
|
/** 获取字典 */ |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
|
import { postloadZeroSuppleList } from '@/api/distribution/zeroAdditionalRecording'; |
|
|
|
|
import { downloadXls } from '@/utils/util'; |
|
|
|
|
import { oldColumnList, newColumnList } from '@/option/distribution/zeroAdditionalRecording'; |
|
|
|
|
import { ElMessage } from 'element-plus'; |
|
|
|
|
|
|
|
|
|
const details = reactive<any>({ |
|
|
|
|
/** 是否开启搜索 */ |
|
|
|
@ -272,13 +274,13 @@ const details = reactive<any>({
|
|
|
|
|
drawerShow: false, |
|
|
|
|
/** 分页参数 */ |
|
|
|
|
page: { |
|
|
|
|
currentPage: 1, |
|
|
|
|
pageNum: 1, |
|
|
|
|
pageSize: 30, |
|
|
|
|
total: 0, |
|
|
|
|
}, |
|
|
|
|
/** 装车明细分页参数 */ |
|
|
|
|
trickleLoadingPage: { |
|
|
|
|
currentPage: 1, |
|
|
|
|
pageNum: 1, |
|
|
|
|
pageSize: 30, |
|
|
|
|
total: 0, |
|
|
|
|
}, |
|
|
|
@ -296,10 +298,12 @@ const details = reactive<any>({
|
|
|
|
|
zeroAdditionalRecordingInfo: { |
|
|
|
|
oldPage: { |
|
|
|
|
pageSize: 30, |
|
|
|
|
currentPage: 1, |
|
|
|
|
pageNum: 1, |
|
|
|
|
total: 0, |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
/** 被选中的零担订单 */ |
|
|
|
|
orderCodeList: [], |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const { |
|
|
|
@ -331,7 +335,33 @@ onMounted(() => {
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
/** 请求页面数据 */ |
|
|
|
|
const onLoad = (page: any) => {}; |
|
|
|
|
const onLoad = async (page: any, params = {}) => { |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.oldListLoading = true; |
|
|
|
|
const submitData = { |
|
|
|
|
...details.page, |
|
|
|
|
...details.query, |
|
|
|
|
...params, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const res = await postloadZeroSuppleList(submitData); |
|
|
|
|
console.log('res :>> ', res); |
|
|
|
|
const { code, data } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
details.oldData = data.records; |
|
|
|
|
|
|
|
|
|
details.page.total = data.total; |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
// 等待列表渲染完成 |
|
|
|
|
await nextTick(); |
|
|
|
|
details.loadingObj.oldListLoading = false; |
|
|
|
|
} |
|
|
|
|
// postloadZeroSuppleList |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
onLoad(); |
|
|
|
|
|
|
|
|
|
/** 搜索 */ |
|
|
|
|
const searchChange = () => { |
|
|
|
@ -342,7 +372,7 @@ const searchChange = () => {
|
|
|
|
|
const searchReset = () => { |
|
|
|
|
details.query = {}; |
|
|
|
|
details.stockupDate = []; |
|
|
|
|
details.page.currentPage = 1; |
|
|
|
|
details.page.pageNum = 1; |
|
|
|
|
onLoad(details.page); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
@ -418,7 +448,7 @@ const selectsc = (index, row) => {
|
|
|
|
|
|
|
|
|
|
/** 表格表头复选框选择 */ |
|
|
|
|
const selectionChange = (list: any) => { |
|
|
|
|
details.selectionList = list; |
|
|
|
|
details.oldSelectionList = list; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 表格表头输入框搜索 */ |
|
|
|
@ -488,10 +518,31 @@ const setnewcolum = (newarr, headarr, type) => {
|
|
|
|
|
|
|
|
|
|
/** 添加运单 */ |
|
|
|
|
const handleAddWaybill = () => { |
|
|
|
|
// if (this.addInfo.oldSelectionList.length === 0) return this.$message.warning('最少选择一条运单'); |
|
|
|
|
// this.addInfo.newData = [...this.addInfo.newData, ...this.addInfo.oldSelectionList]; |
|
|
|
|
// this.addInfo.haveIds = this.addInfo.map(val => val.id); |
|
|
|
|
if (details.oldSelectionList.length === 0) return ElMessage.error('最少选择一条数据'); |
|
|
|
|
|
|
|
|
|
// 新增 |
|
|
|
|
// if (Number(details.pageType) === 1) { |
|
|
|
|
for (let item of details.oldSelectionList) { |
|
|
|
|
item.planNum = item.stockNum; |
|
|
|
|
item.loadingNum = 0; |
|
|
|
|
details.newData.push(item); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
details.orderCodeList = [ |
|
|
|
|
...new Set([ |
|
|
|
|
...details.orderCodeList, |
|
|
|
|
...details.oldSelectionList.map(val => val.orderCode + ',' + val.waybillNo), |
|
|
|
|
]), |
|
|
|
|
]; |
|
|
|
|
console.log('details.orderCodeList :>> ', details.orderCodeList); |
|
|
|
|
|
|
|
|
|
const orderCodes = details.selectionList.map(val => val.orderCode); |
|
|
|
|
// clearSelectionList(); |
|
|
|
|
details.page.pageNum = 1; |
|
|
|
|
// initOriginWarehouseOrder(); |
|
|
|
|
// } |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 移除运单 */ |
|
|
|
|
const handleRemoveWaybill = () => { |
|
|
|
|
// if (this.addInfo.newSelectionList.length === 0) return this.$message.warning('最少选择一条运单'); |
|
|
|
|