|
|
@ -192,7 +192,12 @@ |
|
|
|
style="width: 48%" |
|
|
|
style="width: 48%" |
|
|
|
v-if="form.Wholevehicle" |
|
|
|
v-if="form.Wholevehicle" |
|
|
|
> |
|
|
|
> |
|
|
|
<SurchargeTable :SurchargeData="form.fullVehicleData" :Surcharge="form.fullVehicle"> |
|
|
|
<SurchargeTable |
|
|
|
|
|
|
|
:SurchargeData="form.fullVehicleData" |
|
|
|
|
|
|
|
:Surcharge="form.fullVehicle" |
|
|
|
|
|
|
|
@change="selectChange" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
> |
|
|
|
<template #default="slotProps"> |
|
|
|
<template #default="slotProps"> |
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
<div class="eml_btn"> |
|
|
|
<div class="eml_btn"> |
|
|
@ -726,6 +731,43 @@ async function updateDictionary(targetArray, dictionaryType) { |
|
|
|
.catch(() => {}) |
|
|
|
.catch(() => {}) |
|
|
|
.finally(() => {}); |
|
|
|
.finally(() => {}); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function updateOptions(allDropdowns) { |
|
|
|
|
|
|
|
// 拉平所有的下拉框组到一个单一数组中 |
|
|
|
|
|
|
|
let dropdowns = allDropdowns; |
|
|
|
|
|
|
|
console.log(dropdowns,'dropdowns'); |
|
|
|
|
|
|
|
// 遍历每个下拉框 |
|
|
|
|
|
|
|
dropdowns.forEach((dropdown, index, self) => { |
|
|
|
|
|
|
|
// 取出当前下拉框选中的值 |
|
|
|
|
|
|
|
let selectedValue = dropdown.vehicleType; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 更新其他下拉框的options状态 |
|
|
|
|
|
|
|
self.forEach(otherDropdown => { |
|
|
|
|
|
|
|
if (dropdown !== otherDropdown) { |
|
|
|
|
|
|
|
// 确保不是自身 |
|
|
|
|
|
|
|
otherDropdown.options.forEach(option => { |
|
|
|
|
|
|
|
// 如果选项值和当前下拉框选中值相同,则禁用该选项 |
|
|
|
|
|
|
|
if (option.value === selectedValue) { |
|
|
|
|
|
|
|
option.disabled = true; |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
// 如果其他逻辑导致应保持禁用,可以在这里加上,下面的语句是检查是否已在别处被选中 |
|
|
|
|
|
|
|
let isSelectedSomewhereElse = self.some( |
|
|
|
|
|
|
|
d => d !== otherDropdown && d.vehicleType === option.value |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
option.disabled = isSelectedSomewhereElse; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 选择框值发生改变 |
|
|
|
|
|
|
|
const selectChange = data => { |
|
|
|
|
|
|
|
// 更新选项 |
|
|
|
|
|
|
|
updateOptions(form.value.fullVehicleData); |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
// 重置表单 |
|
|
|
// 重置表单 |
|
|
|
const resetFormData = () => { |
|
|
|
const resetFormData = () => { |
|
|
|
ElMessageBox.confirm('是否重置数据?', '提示', { |
|
|
|
ElMessageBox.confirm('是否重置数据?', '提示', { |
|
|
@ -763,9 +805,11 @@ async function addItemAfterId(array) { |
|
|
|
vehicleType: '', // 车型 |
|
|
|
vehicleType: '', // 车型 |
|
|
|
loading: false, |
|
|
|
loading: false, |
|
|
|
price: 0, //价格 |
|
|
|
price: 0, //价格 |
|
|
|
options: pricevehicle.value, //选择框列表 |
|
|
|
options: deepClone(pricevehicle.value), //选择框列表 |
|
|
|
|
|
|
|
|
|
|
|
}; |
|
|
|
}; |
|
|
|
await array.push(newItem); |
|
|
|
await array.push(newItem); |
|
|
|
|
|
|
|
updateOptions(form.value.fullVehicleData); |
|
|
|
} |
|
|
|
} |
|
|
|
// 仓储减 |
|
|
|
// 仓储减 |
|
|
|
const storagereduce = id => { |
|
|
|
const storagereduce = id => { |
|
|
@ -774,10 +818,73 @@ const storagereduce = id => { |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
// 仓储加 |
|
|
|
// 仓储加 |
|
|
|
const storageplus = data => { |
|
|
|
const storageplus = async data => { |
|
|
|
addItemAfterId(form.value.fullVehicleData); |
|
|
|
await addItemAfterId(form.value.fullVehicleData); |
|
|
|
}; |
|
|
|
// 更新选项 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
// let data=[ |
|
|
|
|
|
|
|
// { |
|
|
|
|
|
|
|
// "index": 1, |
|
|
|
|
|
|
|
// "loading": false, |
|
|
|
|
|
|
|
// "options": [ |
|
|
|
|
|
|
|
// { |
|
|
|
|
|
|
|
// "value": 1, |
|
|
|
|
|
|
|
// "label": "5米6", |
|
|
|
|
|
|
|
// "id": "1775349356882358274" |
|
|
|
|
|
|
|
// }, |
|
|
|
|
|
|
|
// { |
|
|
|
|
|
|
|
// "value": 2, |
|
|
|
|
|
|
|
// "label": "9米5", |
|
|
|
|
|
|
|
// "id": "1775349396015214594" |
|
|
|
|
|
|
|
// }, |
|
|
|
|
|
|
|
// { |
|
|
|
|
|
|
|
// "value": 3, |
|
|
|
|
|
|
|
// "label": "3米7", |
|
|
|
|
|
|
|
// "id": "1775349435810770945" |
|
|
|
|
|
|
|
// }, |
|
|
|
|
|
|
|
// { |
|
|
|
|
|
|
|
// "value": 4, |
|
|
|
|
|
|
|
// "label": "2米8", |
|
|
|
|
|
|
|
// "id": "1775349490655490049" |
|
|
|
|
|
|
|
// } |
|
|
|
|
|
|
|
// ], |
|
|
|
|
|
|
|
// "plus": true, |
|
|
|
|
|
|
|
// "price": 55, |
|
|
|
|
|
|
|
// "vehicleType": 1 |
|
|
|
|
|
|
|
// }, |
|
|
|
|
|
|
|
// { |
|
|
|
|
|
|
|
// "index": 2, |
|
|
|
|
|
|
|
// "plus": false, |
|
|
|
|
|
|
|
// "reduce": true, |
|
|
|
|
|
|
|
// "vehicleType": "", |
|
|
|
|
|
|
|
// "loading": false, |
|
|
|
|
|
|
|
// "price": 0, |
|
|
|
|
|
|
|
// "options": [ |
|
|
|
|
|
|
|
// { |
|
|
|
|
|
|
|
// "value": 1, |
|
|
|
|
|
|
|
// "label": "5米6", |
|
|
|
|
|
|
|
// "id": "1775349356882358274" |
|
|
|
|
|
|
|
// }, |
|
|
|
|
|
|
|
// { |
|
|
|
|
|
|
|
// "value": 2, |
|
|
|
|
|
|
|
// "label": "9米5", |
|
|
|
|
|
|
|
// "id": "1775349396015214594" |
|
|
|
|
|
|
|
// }, |
|
|
|
|
|
|
|
// { |
|
|
|
|
|
|
|
// "value": 3, |
|
|
|
|
|
|
|
// "label": "3米7", |
|
|
|
|
|
|
|
// "id": "1775349435810770945" |
|
|
|
|
|
|
|
// }, |
|
|
|
|
|
|
|
// { |
|
|
|
|
|
|
|
// "value": 4, |
|
|
|
|
|
|
|
// "label": "2米8", |
|
|
|
|
|
|
|
// "id": "1775349490655490049" |
|
|
|
|
|
|
|
// } |
|
|
|
|
|
|
|
// ] |
|
|
|
|
|
|
|
// } |
|
|
|
|
|
|
|
// ] |
|
|
|
const billing = async () => { |
|
|
|
const billing = async () => { |
|
|
|
// 服务类型转换为数字数组 |
|
|
|
// 服务类型转换为数字数组 |
|
|
|
form.value.dispatchPricingType = (await request.value.dispatchPricingType) |
|
|
|
form.value.dispatchPricingType = (await request.value.dispatchPricingType) |
|
|
@ -859,7 +966,7 @@ const onLoad = async () => { |
|
|
|
} |
|
|
|
} |
|
|
|
// 按方计费 |
|
|
|
// 按方计费 |
|
|
|
if (form.value.dispatchPricingType.includes(3)) { |
|
|
|
if (form.value.dispatchPricingType.includes(3)) { |
|
|
|
if(request.value.dispatchCubeCategorys.length){ |
|
|
|
if (request.value.dispatchCubeCategorys.length) { |
|
|
|
request.value.dispatchCubeCategorys.forEach((item, index) => { |
|
|
|
request.value.dispatchCubeCategorys.forEach((item, index) => { |
|
|
|
form.value.cubeCategoryData.push({ |
|
|
|
form.value.cubeCategoryData.push({ |
|
|
|
index: index + 1, |
|
|
|
index: index + 1, |
|
|
@ -870,11 +977,10 @@ const onLoad = async () => { |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
// 按重量 |
|
|
|
// 按重量 |
|
|
|
if (form.value.dispatchPricingType.includes(2)) { |
|
|
|
if (form.value.dispatchPricingType.includes(2)) { |
|
|
|
if( request.value.dispatchWeightCategorys.length){ |
|
|
|
if (request.value.dispatchWeightCategorys.length) { |
|
|
|
request.value.dispatchWeightCategorys.forEach((item, index) => { |
|
|
|
request.value.dispatchWeightCategorys.forEach((item, index) => { |
|
|
|
form.value.weightCategoryData.push({ |
|
|
|
form.value.weightCategoryData.push({ |
|
|
|
index: index + 1, |
|
|
|
index: index + 1, |
|
|
@ -885,7 +991,6 @@ const onLoad = async () => { |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -913,7 +1018,7 @@ const onLoad = async () => { |
|
|
|
// 最低计费等级 |
|
|
|
// 最低计费等级 |
|
|
|
console.log(form.value.Minimumbilling, 'Minimumbilling'); |
|
|
|
console.log(form.value.Minimumbilling, 'Minimumbilling'); |
|
|
|
console.log(request.value.dispatchMinCostType); |
|
|
|
console.log(request.value.dispatchMinCostType); |
|
|
|
if( form.value.Minimumbilling.length){ |
|
|
|
if (form.value.Minimumbilling.length) { |
|
|
|
form.value.Minimumbilling.forEach(res => { |
|
|
|
form.value.Minimumbilling.forEach(res => { |
|
|
|
if (res.index == request.value.dispatchMinCostType) { |
|
|
|
if (res.index == request.value.dispatchMinCostType) { |
|
|
|
res.disabled = true; |
|
|
|
res.disabled = true; |
|
|
@ -931,7 +1036,7 @@ const onLoad = async () => { |
|
|
|
// console.log('加算价格没有'); |
|
|
|
// console.log('加算价格没有'); |
|
|
|
// } |
|
|
|
// } |
|
|
|
// 遗留控制 |
|
|
|
// 遗留控制 |
|
|
|
if(form.value.Minimumlegacy.length){ |
|
|
|
if (form.value.Minimumlegacy.length) { |
|
|
|
form.value.Minimumlegacy.forEach(res => { |
|
|
|
form.value.Minimumlegacy.forEach(res => { |
|
|
|
if (res.index == request.value.dispatchMinCostType) { |
|
|
|
if (res.index == request.value.dispatchMinCostType) { |
|
|
|
res.disabled = true; |
|
|
|
res.disabled = true; |
|
|
@ -941,7 +1046,6 @@ const onLoad = async () => { |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 附加费用 |
|
|
|
// 附加费用 |
|
|
|
// 是否有操作/装卸费 |
|
|
|
// 是否有操作/装卸费 |
|
|
|
if (!request.value.dispatchIsOperateFee) { |
|
|
|
if (!request.value.dispatchIsOperateFee) { |
|
|
|