diff --git a/src/api/distribution/VehicleStowageDetails.js b/src/api/distribution/VehicleStowageDetails.js index 36df9b56..b1617479 100644 --- a/src/api/distribution/VehicleStowageDetails.js +++ b/src/api/distribution/VehicleStowageDetails.js @@ -22,3 +22,35 @@ export const postCarsLoadDetailInfo = data => { }); }; +/** + * 通过名称查询仓库信息 + */ +export const postFindCarsLoadLogs = data => { + return request({ + url: '/api/logpm-trunkline/carsLoad/findCarsLoadLogs', + method: 'post', + data, + }); +}; + +/** + * 通过名称查询仓库信息 + */ +export const postFindContractList = data => { + return request({ + url: '/api/logpm-trunkline/carsLoad/findContractList', + method: 'post', + data, + }); +}; + +/** + * 通过名称查询仓库信息 + */ +export const postAddContractByLoadId = data => { + return request({ + url: '/api/logpm-trunkline/carsLoad/addContractByLoadId', + method: 'post', + data, + }); +}; diff --git a/src/api/distribution/truckLoadingDetails.js b/src/api/distribution/truckLoadingDetails.js index dfd6caf5..122988dd 100644 --- a/src/api/distribution/truckLoadingDetails.js +++ b/src/api/distribution/truckLoadingDetails.js @@ -65,3 +65,14 @@ export const postRemoveCarsLoadScan = (data = {}) => { data, }); }; + +/** + * 三方中转批量签收 + */ +export const postSignLoadScanByIds = (data = {}) => { + return request({ + url: '/api/logpm-trunkline/tripartiteTransfer/signLoadScanByIds', + method: 'post', + data, + }); +}; diff --git a/src/styles/common.scss b/src/styles/common.scss index 3bf3a06b..225adaef 100644 --- a/src/styles/common.scss +++ b/src/styles/common.scss @@ -131,6 +131,10 @@ a { bottom: 0; } +.flex { + display: flex; +} + .flex-c-c { display: flex; align-items: center; @@ -185,6 +189,10 @@ a { flex: 1; } +.word-break-break-all { + word-break: break-all; +} + // 头部搜索 .search_container { display: grid; diff --git a/src/views/distribution/artery/VehicleStowage.vue b/src/views/distribution/artery/VehicleStowage.vue index 16619762..44a26862 100644 --- a/src/views/distribution/artery/VehicleStowage.vue +++ b/src/views/distribution/artery/VehicleStowage.vue @@ -64,9 +64,9 @@ 装载清单 - 装载卸车清单(财务) + > --> 发 车 取消发车 { /** 发车 */ const handleStartCar = async () => { - if (details.selectionList.length === 0) { - return ElMessage({ - message: '请选择发车数据', - type: 'warning', - }); - } else if (details.selectionList.length !== 1) { - return ElMessage({ - message: '仅支持单条数据操作', - type: 'warning', - }); - } + let message = ''; + if (details.selectionList.length === 0) message = '请选择发车数据'; + else if (details.selectionList.length !== 1) message = '仅支持单条数据操作'; + if (message) return ElMessage.warning({ message }); + + details.loadingObj.pageLoading = true; // 判断是否有未有终点的装车数据 const res = await postDetermineHasNoFinalNode({ loadId: details.selectionList[0].id }); + details.loadingObj.pageLoading = false; const { code, data } = res.data; if (code !== 200) return; @@ -997,22 +993,31 @@ const handleStartCar = async () => { cancelButtonText: '取消', type: 'warning', }).then(async () => { - const submitData = { - loadId: details.selectionList.map(val => val.id).join(','), - startCarType: '1', - }; + try { + details.loadingObj.pageLoading = true; + details.loadingObj.pageLoading = true; - const res = await postStartCarByLoadId(submitData); - const { code } = res.data; - if (code !== 200) { - return; - } - ElMessage({ - type: 'success', - message: '发车成功', - }); + const submitData = { + loadId: details.selectionList.map(val => val.id).join(','), + startCarType: '1', + }; - initOnload(); + const res = await postStartCarByLoadId(submitData); + const { code } = res.data; + if (code !== 200) { + return; + } + ElMessage({ + type: 'success', + message: '发车成功', + }); + + initOnload(); + } catch (error) { + console.log('error :>> ', error); + } finally { + details.loadingObj.pageLoading = false; + } }); } }; @@ -1126,21 +1131,29 @@ const handleCancelStartCar = () => { cancelButtonText: '取消', type: 'warning', }).then(async () => { - const submitData = { - loadId: details.selectionList.map(val => val.id).join(','), - startCarType: '1', - }; + try { + details.loadingObj.pageLoading = true; + + const submitData = { + loadId: details.selectionList.map(val => val.id).join(','), + startCarType: '1', + }; - const res = await postCancelStartCarByLoadId(submitData); - const { code } = res.data; - if (code !== 200) { - return; + const res = await postCancelStartCarByLoadId(submitData); + const { code } = res.data; + if (code !== 200) { + return; + } + ElMessage({ + type: 'success', + message: '取消发车成功', + }); + initOnload(); + } catch (error) { + console.log('error :>> ', error); + } finally { + details.loadingObj.pageLoading = false; } - ElMessage({ - type: 'success', - message: '取消发车成功', - }); - initOnload(); }); }; @@ -1157,7 +1170,7 @@ const handleCancelCarsLoad = () => { type: 'warning', }); } - ElMessageBox.confirm('确认取消发车吗?', 'Warning', { + ElMessageBox.confirm('确认取消装车吗?', 'Warning', { confirmButtonText: '确认', cancelButtonText: '取消', type: 'warning', @@ -1175,21 +1188,29 @@ const handleCancelCarsLoad = () => { type: 'warning', }); - const submitData = { - loadId: ids.join(','), - startCarType: '1', - }; + try { + details.loadingObj.pageLoading = true; - const res = await postCancelCarsLoadByLoadId(submitData); - const { code } = res.data; - if (code !== 200) { - return; + const submitData = { + loadId: ids.join(','), + startCarType: '1', + }; + + const res = await postCancelCarsLoadByLoadId(submitData); + const { code } = res.data; + if (code !== 200) { + return; + } + ElMessage({ + type: 'success', + message: '取消配载成功', + }); + initOnload(); + } catch (error) { + console.log('error :>> ', error); + } finally { + details.loadingObj.pageLoading = false; } - ElMessage({ - type: 'success', - message: '取消配载成功', - }); - initOnload(); }); }; diff --git a/src/views/distribution/artery/VehicleStowageDetails.vue b/src/views/distribution/artery/VehicleStowageDetails.vue index 790b1760..00ca7c56 100644 --- a/src/views/distribution/artery/VehicleStowageDetails.vue +++ b/src/views/distribution/artery/VehicleStowageDetails.vue @@ -1,7 +1,7 @@