|
|
|
@ -242,13 +242,15 @@
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<!-- 订单池和调度池 --> |
|
|
|
|
<template v-if="details.nodeInfoData.length > 1"> |
|
|
|
|
<template v-if="Number(details.pageType) !== 3 && details.nodeInfoData.length > 1"> |
|
|
|
|
<div class="add_row" v-for="(item, index) in details.nodeInfoData"> |
|
|
|
|
<template v-if="index !== 0"> |
|
|
|
|
<template v-if="index > details.warehouseIndex"> |
|
|
|
|
<div style="width: 49%"> |
|
|
|
|
<!-- 头部 --> |
|
|
|
|
<el-divider content-position="left"> |
|
|
|
|
<span style="margin-right: 20px">{{ details.nodeInfoData[0].nodeName }}</span> |
|
|
|
|
<span style="margin-right: 20px">{{ |
|
|
|
|
details.nodeInfoData[details.warehouseIndex].nodeName |
|
|
|
|
}}</span> |
|
|
|
|
<span>运单池</span> |
|
|
|
|
</el-divider> |
|
|
|
|
|
|
|
|
@ -556,6 +558,7 @@ import {
|
|
|
|
|
postUpdatePlanNumByCarsOrderId, |
|
|
|
|
postAddOrderToFinalNodeId, |
|
|
|
|
postUpdateCarsLoadBasicData, |
|
|
|
|
postUpdateLoadFeeByNodeId, |
|
|
|
|
} from '@/api/distribution/AddVehicleStowage'; |
|
|
|
|
import { useRouter, useRoute } from 'vue-router'; |
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'; |
|
|
|
@ -803,7 +806,7 @@ const clearSelectionList = () => {
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 设置节点费用禁用 */ |
|
|
|
|
const handleEditForbidden = (_arr: []) => { |
|
|
|
|
const handleEditForbidden = (_arr: any[]) => { |
|
|
|
|
if (_arr.length === 0) return; |
|
|
|
|
|
|
|
|
|
// 获取第一项 (第一项和后续项禁用项不同, 分开设置) |
|
|
|
@ -830,11 +833,11 @@ const initOriginWarehouseOrder = async (params = {}) => {
|
|
|
|
|
details.loadingObj.oldListLoading = true; |
|
|
|
|
const submitData = { |
|
|
|
|
...details.page, |
|
|
|
|
loadId: details.pageInfo.startWarehouseInfo.warehouseId, |
|
|
|
|
orderCodes: details.orderCodeList, |
|
|
|
|
...details.query, |
|
|
|
|
...params, |
|
|
|
|
}; |
|
|
|
|
if (Number(details.pageType) === 2) submitData.loadId = details.loadId; |
|
|
|
|
if (submitData.orderCodes.length === 0) delete submitData.orderCodes; |
|
|
|
|
const res = await postFindAllOrderList(submitData); |
|
|
|
|
console.log('res :>> ', res); |
|
|
|
@ -898,7 +901,7 @@ const onLoad = async () => {
|
|
|
|
|
details.form.startWarehouseId = data.startWarehouseInfo.warehouseId; |
|
|
|
|
} |
|
|
|
|
// 编辑 |
|
|
|
|
else if (Number(details.pageType) === 2) { |
|
|
|
|
else { |
|
|
|
|
console.log('222 :>> ', 222); |
|
|
|
|
const res = await postSelectEditDetailByLoadId({ loadId: details.loadId }); |
|
|
|
|
console.log('res :>> ', res); |
|
|
|
@ -922,7 +925,7 @@ const onLoad = async () => {
|
|
|
|
|
details.nodeInfoData[index].selectionList = list; |
|
|
|
|
console.log('list :>> ', list); |
|
|
|
|
}; |
|
|
|
|
initDispatchOrder(val); |
|
|
|
|
if (Number(details.pageType) === 2) initDispatchOrder(val); |
|
|
|
|
return val; |
|
|
|
|
}) |
|
|
|
|
); |
|
|
|
@ -932,7 +935,7 @@ const onLoad = async () => {
|
|
|
|
|
details.pageInfo.startWarehouseInfo.warehouseId = data.carsLoadEntity.startWarehouseId; |
|
|
|
|
details.pageInfo.startWarehouseInfo.warehouseName = data.carsLoadEntity.startWarehouseName; |
|
|
|
|
// 请求节点 |
|
|
|
|
initOriginWarehouseOrder(); |
|
|
|
|
if (Number(details.pageType) === 2) initOriginWarehouseOrder(); |
|
|
|
|
|
|
|
|
|
// 设置页面列表高度 |
|
|
|
|
setTabelHeight(); |
|
|
|
@ -1271,6 +1274,9 @@ const remoteMethodDriver = async val => {
|
|
|
|
|
details.driverListByName = data; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 初始化空调 |
|
|
|
|
remoteMethodDriver(''); |
|
|
|
|
|
|
|
|
|
/** 查询车辆信息 */ |
|
|
|
|
const remoteMethodCar = async val => { |
|
|
|
|
// if (!val) return; |
|
|
|
@ -1281,6 +1287,7 @@ const remoteMethodCar = async val => {
|
|
|
|
|
if (code !== 200) return; |
|
|
|
|
details.carListByName = data; |
|
|
|
|
}; |
|
|
|
|
remoteMethodCar('') |
|
|
|
|
|
|
|
|
|
/** 修改计划数 */ |
|
|
|
|
const handleEditplanNum = ({ row }, item) => { |
|
|
|
@ -1424,6 +1431,37 @@ const editSubmit = async () => {
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 节点费用修改提交 */ |
|
|
|
|
const nodeCostSubmit = async () => { |
|
|
|
|
try { |
|
|
|
|
btnLoadingObj.submitBtn = false; |
|
|
|
|
|
|
|
|
|
const submitData = { |
|
|
|
|
loadId: details.loadId, |
|
|
|
|
...details.form, |
|
|
|
|
carsLoadLineList: details.nodeInfoData, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
console.log('details.nodeInfoData :>> ', details.nodeInfoData); |
|
|
|
|
|
|
|
|
|
console.log('details.form :>> ', details.form); |
|
|
|
|
|
|
|
|
|
console.log('submitData :>> ', submitData); |
|
|
|
|
const res = await postUpdateLoadFeeByNodeId(submitData); |
|
|
|
|
const { code, msg } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
ElMessage({ |
|
|
|
|
message: msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
back(); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
btnLoadingObj.submitBtn = false; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 提交 */ |
|
|
|
|
const handleSubmit = (formEl: FormInstance | undefined) => { |
|
|
|
|
if (btnLoadingObj.submitBtn) return; |
|
|
|
@ -1435,6 +1473,7 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
|
|
|
|
|
if (Number(details.pageType) === 1) addSubmit(); |
|
|
|
|
// 修改提交 |
|
|
|
|
else if (Number(details.pageType) === 2) editSubmit(); |
|
|
|
|
else if (Number(details.pageType) === 3) nodeCostSubmit(); |
|
|
|
|
} else { |
|
|
|
|
console.log('error submit!', fields); |
|
|
|
|
} |
|
|
|
@ -1442,6 +1481,7 @@ const handleSubmit = (formEl: FormInstance | undefined) => {
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
watch($route, () => { |
|
|
|
|
if ($route.path !== '/distribution/artery/AddVehicleStowage') return; |
|
|
|
|
onLoad(); |
|
|
|
|
}); |
|
|
|
|
</script> |
|
|
|
|