|
|
|
@ -708,7 +708,7 @@ const form = ref({
|
|
|
|
|
], |
|
|
|
|
}); |
|
|
|
|
async function updateDictionary(targetArray, dictionaryType) { |
|
|
|
|
await getDictionaryBiz(dictionaryType) |
|
|
|
|
await getDictionaryBiz(dictionaryType) |
|
|
|
|
.then(res => { |
|
|
|
|
console.log(res, '字典'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
@ -765,7 +765,7 @@ async function addItemAfterId(array) {
|
|
|
|
|
price: 0, //价格 |
|
|
|
|
options: pricevehicle.value, //选择框列表 |
|
|
|
|
}; |
|
|
|
|
await array.push(newItem); |
|
|
|
|
await array.push(newItem); |
|
|
|
|
} |
|
|
|
|
// 仓储减 |
|
|
|
|
const storagereduce = id => { |
|
|
|
@ -824,9 +824,24 @@ const onLoad = async () => {
|
|
|
|
|
billing(); //显示条件 |
|
|
|
|
// 整车 |
|
|
|
|
if (form.value.dispatchPricingType.includes(4)) { |
|
|
|
|
addItemAfterId(form.value.fullVehicleData); |
|
|
|
|
console.log('执行整车'); |
|
|
|
|
if (request.value.fullVehicle && request.value.fullVehicle) { |
|
|
|
|
addItemAfterId(form.value.fullVehicleData); |
|
|
|
|
} else { |
|
|
|
|
form.value.fullVehicleData = [ |
|
|
|
|
{ |
|
|
|
|
index: 1, // 新对象的 ID 为当前数组长度加 1 |
|
|
|
|
plus: false, // 是否显示加号 |
|
|
|
|
reduce: true, // 是否显示减号 |
|
|
|
|
vehicleType: '', // 车型 |
|
|
|
|
loading: false, |
|
|
|
|
price: 0, //价格 |
|
|
|
|
options: pricevehicle.value, //选择框列表 |
|
|
|
|
}, |
|
|
|
|
]; |
|
|
|
|
console.log(form.value.fullVehicleData, '整车数据'); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 按件品类计费 |
|
|
|
|
if (request.value.dispatchIsByCategory) { |
|
|
|
|
if (form.value.dispatchPricingType.includes(1)) { |
|
|
|
@ -844,7 +859,8 @@ const onLoad = async () => {
|
|
|
|
|
} |
|
|
|
|
// 按方计费 |
|
|
|
|
if (form.value.dispatchPricingType.includes(3)) { |
|
|
|
|
request.value.dispatchCubeCategorys.forEach((item, index) => { |
|
|
|
|
if(request.value.dispatchCubeCategorys.length){ |
|
|
|
|
request.value.dispatchCubeCategorys.forEach((item, index) => { |
|
|
|
|
form.value.cubeCategoryData.push({ |
|
|
|
|
index: index + 1, |
|
|
|
|
categoryId: item.id, //品类 |
|
|
|
@ -853,10 +869,13 @@ const onLoad = async () => {
|
|
|
|
|
options: [{ label: item.name, value: item.id }], |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
// 按重量 |
|
|
|
|
if (form.value.dispatchPricingType.includes(2)) { |
|
|
|
|
request.value.dispatchWeightCategorys.forEach((item, index) => { |
|
|
|
|
if( request.value.dispatchWeightCategorys.length){ |
|
|
|
|
request.value.dispatchWeightCategorys.forEach((item, index) => { |
|
|
|
|
form.value.weightCategoryData.push({ |
|
|
|
|
index: index + 1, |
|
|
|
|
categoryId: item.id, //品类 |
|
|
|
@ -865,9 +884,10 @@ const onLoad = async () => {
|
|
|
|
|
options: [{ label: item.name, value: item.id }], |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
console.log(request.value, ' request.value'); |
|
|
|
|
// 附加费品类 |
|
|
|
@ -893,13 +913,16 @@ const onLoad = async () => {
|
|
|
|
|
// 最低计费等级 |
|
|
|
|
console.log(form.value.Minimumbilling, 'Minimumbilling'); |
|
|
|
|
console.log(request.value.dispatchMinCostType); |
|
|
|
|
form.value.Minimumbilling.forEach(res => { |
|
|
|
|
if( form.value.Minimumbilling.length){ |
|
|
|
|
form.value.Minimumbilling.forEach(res => { |
|
|
|
|
if (res.index == request.value.dispatchMinCostType) { |
|
|
|
|
res.disabled = true; |
|
|
|
|
} else { |
|
|
|
|
res.disabled = false; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// if (request.value.dispatchMinCostType != 1) { |
|
|
|
|
// form.value.Minimumbilling.find(res => res.label == '加算价格').disabled = true; |
|
|
|
|
// console.log('有加算价格'); |
|
|
|
@ -908,13 +931,16 @@ const onLoad = async () => {
|
|
|
|
|
// console.log('加算价格没有'); |
|
|
|
|
// } |
|
|
|
|
// 遗留控制 |
|
|
|
|
form.value.Minimumlegacy.forEach(res => { |
|
|
|
|
if(form.value.Minimumlegacy.length){ |
|
|
|
|
form.value.Minimumlegacy.forEach(res => { |
|
|
|
|
if (res.index == request.value.dispatchMinCostType) { |
|
|
|
|
res.disabled = true; |
|
|
|
|
} else { |
|
|
|
|
res.disabled = false; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 附加费用 |
|
|
|
|
// 是否有操作/装卸费 |
|
|
|
@ -1044,38 +1070,36 @@ const onLoad = async () => {
|
|
|
|
|
} |
|
|
|
|
//按整车 |
|
|
|
|
if (form.value.dispatchPricingType.includes(4)) { |
|
|
|
|
form.value.fullVehicleData = []; |
|
|
|
|
if(requestInfo.value.fullVehicle && requestInfo.value.fullVehicle.length){ |
|
|
|
|
if (requestInfo.value.fullVehicle && requestInfo.value.fullVehicle.length) { |
|
|
|
|
form.value.fullVehicleData = []; |
|
|
|
|
requestInfo.value.fullVehicle.forEach((item, index) => { |
|
|
|
|
form.value.fullVehicleData.push({ |
|
|
|
|
index: index + 1, |
|
|
|
|
loading: false, |
|
|
|
|
options: pricevehicle.value, |
|
|
|
|
plus: true, |
|
|
|
|
price: item.price || 0, |
|
|
|
|
vehicleType: item.vehicleType, |
|
|
|
|
form.value.fullVehicleData.push({ |
|
|
|
|
index: index + 1, |
|
|
|
|
loading: false, |
|
|
|
|
options: pricevehicle.value, |
|
|
|
|
plus: true, |
|
|
|
|
price: item.price || 0, |
|
|
|
|
vehicleType: item.vehicleType, |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 附加费用 |
|
|
|
|
if (request.value.dispatchIsCategorySubjoin) { |
|
|
|
|
if( requestInfo.value.additionalCategory && requestInfo.value.additionalCategory.length){ |
|
|
|
|
if (requestInfo.value.additionalCategory && requestInfo.value.additionalCategory.length) { |
|
|
|
|
requestInfo.value.additionalCategory.forEach(item => { |
|
|
|
|
let data = form.value.additionalCategoryData.find( |
|
|
|
|
res => res.categoryId == item.categoryId |
|
|
|
|
); |
|
|
|
|
if (data) { |
|
|
|
|
data.handlingPrice = item.handlingPrice || 0; |
|
|
|
|
data.relocationPrice = item.relocationPrice || 0; |
|
|
|
|
data.sortPrice = item.sortPrice || 0; |
|
|
|
|
data.upstairsDeliveryPrice = item.upstairsDeliveryPrice || 0; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
let data = form.value.additionalCategoryData.find( |
|
|
|
|
res => res.categoryId == item.categoryId |
|
|
|
|
); |
|
|
|
|
if (data) { |
|
|
|
|
data.handlingPrice = item.handlingPrice || 0; |
|
|
|
|
data.relocationPrice = item.relocationPrice || 0; |
|
|
|
|
data.sortPrice = item.sortPrice || 0; |
|
|
|
|
data.upstairsDeliveryPrice = item.upstairsDeliveryPrice || 0; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
const data = requestInfo.value.additionalCategory[0]; |
|
|
|
|
console.log(data, 'data===>'); |
|
|
|
@ -1111,18 +1135,16 @@ const onLoad = async () => {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let setTime = setTimeout(()=>{ |
|
|
|
|
formCopy.value = deepClone(form.value); |
|
|
|
|
let setTime = setTimeout(() => { |
|
|
|
|
formCopy.value = deepClone(form.value); |
|
|
|
|
loading.value = false; |
|
|
|
|
clearTimeout(setTime); |
|
|
|
|
},500) |
|
|
|
|
|
|
|
|
|
}, 500); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
onLoad(); |
|
|
|
|
// 提交信息 |
|
|
|
|
const handleSubmit = () => { |
|
|
|
|
|
|
|
|
|
let data = { |
|
|
|
|
checkType: '4', |
|
|
|
|
id: $route.query.id, |
|
|
|
@ -1212,23 +1234,22 @@ const handleSubmit = () => {
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
// 整车计费 |
|
|
|
|
if(form.value.dispatchPricingType.includes(4)){ |
|
|
|
|
if (form.value.dispatchPricingType.includes(4)) { |
|
|
|
|
let fullVehicleDataState = form.value.fullVehicleData.every(res => res.vehicleType); |
|
|
|
|
if (fullVehicleDataState && form.value.fullVehicleData.length) { |
|
|
|
|
form.value.fullVehicleData.forEach(item => { |
|
|
|
|
data.dispatch['fullVehicle'].push({ |
|
|
|
|
price: item.price || 0, // 整车计费(元/车) |
|
|
|
|
vehicleType: item.vehicleType, //车型 |
|
|
|
|
if (fullVehicleDataState && form.value.fullVehicleData.length) { |
|
|
|
|
form.value.fullVehicleData.forEach(item => { |
|
|
|
|
data.dispatch['fullVehicle'].push({ |
|
|
|
|
price: item.price || 0, // 整车计费(元/车) |
|
|
|
|
vehicleType: item.vehicleType, //车型 |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '整车计费有未选择车型', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '整车计费有未选择车型', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 附加费用 |
|
|
|
@ -1280,19 +1301,22 @@ const handleSubmit = () => {
|
|
|
|
|
} |
|
|
|
|
console.log(data, '要提交的数据'); |
|
|
|
|
loading.value = true; |
|
|
|
|
putBasicdataPrice(data).then(res => { |
|
|
|
|
console.log(res, '处理好的值'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}).catch(res=>{ |
|
|
|
|
console.log(res,'错误信息'); |
|
|
|
|
}).finally(()=>{ |
|
|
|
|
loading.value = false; |
|
|
|
|
}) |
|
|
|
|
putBasicdataPrice(data) |
|
|
|
|
.then(res => { |
|
|
|
|
console.log(res, '处理好的值'); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
.catch(res => { |
|
|
|
|
console.log(res, '错误信息'); |
|
|
|
|
}) |
|
|
|
|
.finally(() => { |
|
|
|
|
loading.value = false; |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
// 返回 |
|
|
|
|