|
|
|
@ -951,6 +951,7 @@ const details = reactive<any>({
|
|
|
|
|
nodeList: [], |
|
|
|
|
/** 当前所在仓库 */ |
|
|
|
|
warehouseId: '', |
|
|
|
|
warehouseName: '', |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const btnLoadingObj = reactive({ |
|
|
|
@ -1129,6 +1130,7 @@ const onLoad = async () => {
|
|
|
|
|
if (code !== 200) return; |
|
|
|
|
|
|
|
|
|
details.warehouseId = data.warehouseId; |
|
|
|
|
details.warehouseName = data.warehouseName; |
|
|
|
|
console.log('details.warehouseId :>> ', details.warehouseId); |
|
|
|
|
|
|
|
|
|
details.allCarsLineList = data.allWarehouseIds; |
|
|
|
@ -2101,8 +2103,8 @@ const editSubmit = async (isEnd = false) => {
|
|
|
|
|
if (!element.carsOrderId) |
|
|
|
|
_addArr.push({ |
|
|
|
|
...element, |
|
|
|
|
nodeId: submitData.startWarehouseId, |
|
|
|
|
nodeName: submitData.startWarehouseName, |
|
|
|
|
nodeId: details.warehouseId, |
|
|
|
|
nodeName: details.warehouseName, |
|
|
|
|
finalNodeId: val.nodeId, |
|
|
|
|
finalNodeName: val.nodeName, |
|
|
|
|
}); |
|
|
|
|