|
|
@ -11,6 +11,7 @@ |
|
|
|
:Surcharge="dispatchSubjoinCategory" |
|
|
|
:Surcharge="dispatchSubjoinCategory" |
|
|
|
@focus="handleRowFocus" |
|
|
|
@focus="handleRowFocus" |
|
|
|
@search="search" |
|
|
|
@search="search" |
|
|
|
|
|
|
|
:loading="Pageloading" |
|
|
|
> |
|
|
|
> |
|
|
|
<template #default="slotProps"> |
|
|
|
<template #default="slotProps"> |
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
@ -161,7 +162,7 @@ |
|
|
|
><el-icon><Plus /></el-icon>新增</el-button |
|
|
|
><el-icon><Plus /></el-icon>新增</el-button |
|
|
|
> |
|
|
|
> |
|
|
|
<SurchargeTable |
|
|
|
<SurchargeTable |
|
|
|
:SurchargeData="form.Oversizedbilling" |
|
|
|
:SurchargeData="OversizedbillingData" |
|
|
|
:Surcharge="Oversizedbilling" |
|
|
|
:Surcharge="Oversizedbilling" |
|
|
|
@focus="handleRowFocus" |
|
|
|
@focus="handleRowFocus" |
|
|
|
@search="search" |
|
|
|
@search="search" |
|
|
@ -239,11 +240,11 @@ |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-dialog> |
|
|
|
</el-dialog> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="footer"> |
|
|
|
<!-- <div class="footer"> |
|
|
|
<el-button type="primary" @click="preservation" |
|
|
|
<el-button type="primary" @click="preservation" |
|
|
|
>保存<el-icon><Promotion /></el-icon |
|
|
|
>保存<el-icon><Promotion /></el-icon |
|
|
|
></el-button> |
|
|
|
></el-button> |
|
|
|
</div> |
|
|
|
</div> --> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
<script> |
|
|
|
<script> |
|
|
|
// 缓存要引入当前页面地址 |
|
|
|
// 缓存要引入当前页面地址 |
|
|
@ -277,6 +278,7 @@ const props = defineProps({ |
|
|
|
templateData: Object, |
|
|
|
templateData: Object, |
|
|
|
}); |
|
|
|
}); |
|
|
|
console.log(props, '来自父页面参数'); |
|
|
|
console.log(props, '来自父页面参数'); |
|
|
|
|
|
|
|
const Pageloading = ref(false); |
|
|
|
const $router = useRouter(); //跳转 |
|
|
|
const $router = useRouter(); //跳转 |
|
|
|
const $useStore = useStore(); //权限 |
|
|
|
const $useStore = useStore(); //权限 |
|
|
|
const $route = useRoute(); //获取地址栏参数 |
|
|
|
const $route = useRoute(); //获取地址栏参数 |
|
|
@ -290,6 +292,7 @@ const formLoad = ref({}); |
|
|
|
const optionsVehicle = ref([]); |
|
|
|
const optionsVehicle = ref([]); |
|
|
|
const copyform = ref({}); |
|
|
|
const copyform = ref({}); |
|
|
|
const dispatchSubjoinCategoryData = ref([]); //列表 |
|
|
|
const dispatchSubjoinCategoryData = ref([]); //列表 |
|
|
|
|
|
|
|
const OversizedbillingData = ref([]); |
|
|
|
const loading = ref(false); //页面loading |
|
|
|
const loading = ref(false); //页面loading |
|
|
|
const form = ref({ |
|
|
|
const form = ref({ |
|
|
|
kilometerCost: 0, //公里数单价 |
|
|
|
kilometerCost: 0, //公里数单价 |
|
|
@ -583,7 +586,6 @@ const GetCategory = () => { |
|
|
|
$_expenseDispatchPriceUnit(data).then(async res => { |
|
|
|
$_expenseDispatchPriceUnit(data).then(async res => { |
|
|
|
console.log(res, '品类'); |
|
|
|
console.log(res, '品类'); |
|
|
|
if (res.data.code == 200) { |
|
|
|
if (res.data.code == 200) { |
|
|
|
loading.value=false; |
|
|
|
|
|
|
|
// 使用 reduce 方法进行分组 |
|
|
|
// 使用 reduce 方法进行分组 |
|
|
|
let groupingData = await grouping(res.data.data.records); |
|
|
|
let groupingData = await grouping(res.data.data.records); |
|
|
|
console.log(groupingData, '分好组的数据'); |
|
|
|
console.log(groupingData, '分好组的数据'); |
|
|
@ -607,7 +609,8 @@ const GetCategory = () => { |
|
|
|
}); |
|
|
|
}); |
|
|
|
let flattenedData = Object.values(groupingData).flat(); //展平添加到附加费里面 |
|
|
|
let flattenedData = Object.values(groupingData).flat(); //展平添加到附加费里面 |
|
|
|
console.log(flattenedData, '附加费'); |
|
|
|
console.log(flattenedData, '附加费'); |
|
|
|
Categorystatistics(flattenedData, form.value.asurcharge, 2); |
|
|
|
await Categorystatistics(flattenedData, form.value.asurcharge, 2); |
|
|
|
|
|
|
|
loading.value = false; |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
@ -635,8 +638,8 @@ const configurationdetails = row => { |
|
|
|
form.value.fuelCost = scope.fuelCost; //油费 |
|
|
|
form.value.fuelCost = scope.fuelCost; //油费 |
|
|
|
console.log(scope, '详情参数'); |
|
|
|
console.log(scope, '详情参数'); |
|
|
|
// 超区区域计费 |
|
|
|
// 超区区域计费 |
|
|
|
form.value.Oversizedbilling = []; |
|
|
|
OversizedbillingData.value = []; |
|
|
|
console.log(form.value.Oversizedbilling, 'form.value.Oversizedbilling'); |
|
|
|
console.log(OversizedbillingData.value, 'OversizedbillingData.value'); |
|
|
|
if (scope.overZoneList?.length) { |
|
|
|
if (scope.overZoneList?.length) { |
|
|
|
scope.overZoneList.forEach((item, index) => { |
|
|
|
scope.overZoneList.forEach((item, index) => { |
|
|
|
let _data = { |
|
|
|
let _data = { |
|
|
@ -650,10 +653,10 @@ const configurationdetails = row => { |
|
|
|
loading: false, |
|
|
|
loading: false, |
|
|
|
id: item.id, |
|
|
|
id: item.id, |
|
|
|
}; |
|
|
|
}; |
|
|
|
form.value.Oversizedbilling.push(_data); |
|
|
|
OversizedbillingData.value.push(_data); |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
console.log(form.value.Oversizedbilling, 'form.value.Oversizedbilling'); |
|
|
|
console.log(OversizedbillingData.value, 'OversizedbillingData.value'); |
|
|
|
// 使用 reduce 方法进行分组 |
|
|
|
// 使用 reduce 方法进行分组 |
|
|
|
let groupingData = await grouping(scope.priceList); |
|
|
|
let groupingData = await grouping(scope.priceList); |
|
|
|
console.log(groupingData, '分好组的数据'); |
|
|
|
console.log(groupingData, '分好组的数据'); |
|
|
@ -677,13 +680,15 @@ const configurationdetails = row => { |
|
|
|
}); |
|
|
|
}); |
|
|
|
let flattenedData = Object.values(groupingData).flat(); //展平添加到附加费里面 |
|
|
|
let flattenedData = Object.values(groupingData).flat(); //展平添加到附加费里面 |
|
|
|
console.log(flattenedData, '附加费'); |
|
|
|
console.log(flattenedData, '附加费'); |
|
|
|
Categorystatistics(res.data.data.addPriceList, form.value.asurcharge, 2); |
|
|
|
await Categorystatistics(res.data.data.addPriceList, form.value.asurcharge, 2); |
|
|
|
|
|
|
|
loading.value = false; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
}; |
|
|
|
}; |
|
|
|
// 车型编辑 |
|
|
|
// 车型编辑 |
|
|
|
const EditRules = row => { |
|
|
|
const EditRules = row => { |
|
|
|
|
|
|
|
loading.value = true; |
|
|
|
dialogtitle.value = '编辑'; |
|
|
|
dialogtitle.value = '编辑'; |
|
|
|
console.log(row, 'row====>'); |
|
|
|
console.log(row, 'row====>'); |
|
|
|
editID.value = row.id; |
|
|
|
editID.value = row.id; |
|
|
@ -696,16 +701,22 @@ const newlyadded = async row => { |
|
|
|
dialogtitle.value = '新增'; |
|
|
|
dialogtitle.value = '新增'; |
|
|
|
// let _dispatchSubjoinCategoryDatacopy = deepClone(dispatchSubjoinCategoryData.value) ; |
|
|
|
// let _dispatchSubjoinCategoryDatacopy = deepClone(dispatchSubjoinCategoryData.value) ; |
|
|
|
form.value = await deepClone(copyform.value); |
|
|
|
form.value = await deepClone(copyform.value); |
|
|
|
|
|
|
|
OversizedbillingData.value=[] |
|
|
|
form.value.dialogPricingrules = true; //开启车型配置规则弹窗 |
|
|
|
form.value.dialogPricingrules = true; //开启车型配置规则弹窗 |
|
|
|
GetCategory(); //获取品类 |
|
|
|
GetCategory(); //获取品类 |
|
|
|
}; |
|
|
|
}; |
|
|
|
// 提交结果数据 |
|
|
|
// 提交结果数据 |
|
|
|
const Pricingrules = () => { |
|
|
|
const Pricingrules = () => { |
|
|
|
if(loading.value){ |
|
|
|
if (loading.value) { |
|
|
|
return |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
if(localStorag) |
|
|
|
if (!form.value.carModel) { |
|
|
|
console.log(form.value); |
|
|
|
ElMessage({ |
|
|
|
|
|
|
|
message: '请选择车型', |
|
|
|
|
|
|
|
type: 'warning', |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
// 新增提交 |
|
|
|
// 新增提交 |
|
|
|
if (dialogtitle.value == '新增') { |
|
|
|
if (dialogtitle.value == '新增') { |
|
|
|
submission(); |
|
|
|
submission(); |
|
|
@ -740,7 +751,7 @@ const Categoryprocessing = (value, data, type) => { |
|
|
|
// 附加费处理 |
|
|
|
// 附加费处理 |
|
|
|
// 超区计费处理 |
|
|
|
// 超区计费处理 |
|
|
|
const Oversizedbillingprocessing = (value, data) => { |
|
|
|
const Oversizedbillingprocessing = (value, data) => { |
|
|
|
form.value.Oversizedbilling.forEach(item => { |
|
|
|
OversizedbillingData.value.forEach(item => { |
|
|
|
let _data = { |
|
|
|
let _data = { |
|
|
|
province: item.region[0], //省 |
|
|
|
province: item.region[0], //省 |
|
|
|
city: item.region[1], //市 |
|
|
|
city: item.region[1], //市 |
|
|
@ -796,19 +807,27 @@ const submission = async () => { |
|
|
|
2 |
|
|
|
2 |
|
|
|
); |
|
|
|
); |
|
|
|
// 超区区域计费处理 |
|
|
|
// 超区区域计费处理 |
|
|
|
await Oversizedbillingprocessing(form.value.Oversizedbilling, data['overZoneList']); |
|
|
|
await Oversizedbillingprocessing(OversizedbillingData.value, data['overZoneList']); |
|
|
|
console.log(data, '要提交的数据'); |
|
|
|
console.log(data, '要提交的数据'); |
|
|
|
$_expenseDispatchPricesave(data).then(res => { |
|
|
|
loading.value = true; |
|
|
|
console.log(res, '提交成功'); |
|
|
|
$_expenseDispatchPricesave(data) |
|
|
|
if (res.data.code == 200) { |
|
|
|
.then(res => { |
|
|
|
ElMessage({ |
|
|
|
console.log(res, '提交成功'); |
|
|
|
message: res.data.msg, |
|
|
|
if (res.data.code == 200) { |
|
|
|
type: 'success', |
|
|
|
ElMessage({ |
|
|
|
}); |
|
|
|
message: res.data.msg, |
|
|
|
form.value.dialogPricingrules = false; //开启车型配置规则弹窗 |
|
|
|
type: 'success', |
|
|
|
onLoad(); |
|
|
|
}); |
|
|
|
} |
|
|
|
form.value.dialogPricingrules = false; //开启车型配置规则弹窗 |
|
|
|
}); |
|
|
|
onLoad(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
.catch(error => { |
|
|
|
|
|
|
|
console.log(error); |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
.finally(() => { |
|
|
|
|
|
|
|
loading.value = false; |
|
|
|
|
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
}; |
|
|
|
//修改提交 |
|
|
|
//修改提交 |
|
|
@ -855,7 +874,7 @@ const Pricingrulesupdate = () => { |
|
|
|
2 |
|
|
|
2 |
|
|
|
); |
|
|
|
); |
|
|
|
// 超区区域计费处理 |
|
|
|
// 超区区域计费处理 |
|
|
|
Oversizedbillingprocessing(form.value.Oversizedbilling, data['overZoneList']); |
|
|
|
Oversizedbillingprocessing(OversizedbillingData.value, data['overZoneList']); |
|
|
|
console.log(data, '要提交的数据'); |
|
|
|
console.log(data, '要提交的数据'); |
|
|
|
|
|
|
|
|
|
|
|
$_expenseDispatchPriceupdate(data).then(res => { |
|
|
|
$_expenseDispatchPriceupdate(data).then(res => { |
|
|
@ -881,33 +900,47 @@ const Oversizedbillingadd = () => { |
|
|
|
options: [...regionList.value], |
|
|
|
options: [...regionList.value], |
|
|
|
loading: false, |
|
|
|
loading: false, |
|
|
|
}; |
|
|
|
}; |
|
|
|
form.value.Oversizedbilling.push(_data); |
|
|
|
OversizedbillingData.value.push(_data); |
|
|
|
form.value.Oversizedbilling.forEach((item, index) => { |
|
|
|
OversizedbillingData.value.forEach((item, index) => { |
|
|
|
item.index = index + 1; |
|
|
|
item.index = index + 1; |
|
|
|
}); |
|
|
|
}); |
|
|
|
}; |
|
|
|
}; |
|
|
|
// 删除超区区域计费 |
|
|
|
// 删除超区区域计费 |
|
|
|
const Oversizedbillingdel = row => { |
|
|
|
const Oversizedbillingdel = row => { |
|
|
|
if (row.id) { |
|
|
|
ElMessageBox.confirm('是否确认删除?', '提示', { |
|
|
|
let data = { |
|
|
|
confirmButtonText: '确认', |
|
|
|
ids: row.id, |
|
|
|
cancelButtonText: '取消', |
|
|
|
}; |
|
|
|
type: 'warning', |
|
|
|
$_expenseDispatchPriceOverZoneremove(data).then(res => { |
|
|
|
}) |
|
|
|
if (res.data.code == 200) { |
|
|
|
.then(() => { |
|
|
|
console.log(row, '删除超区费'); |
|
|
|
if (row.id) { |
|
|
|
let indexToRemove = form.value.Oversizedbilling.findIndex(item => item.index === row.index); |
|
|
|
let data = { |
|
|
|
|
|
|
|
ids: row.id, |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
$_expenseDispatchPriceOverZoneremove(data).then(res => { |
|
|
|
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
|
|
|
ElMessage({ |
|
|
|
|
|
|
|
message: res.data.msg, |
|
|
|
|
|
|
|
type: 'success', |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
console.log(row, '删除超区费'); |
|
|
|
|
|
|
|
let indexToRemove = OversizedbillingData.value.findIndex( |
|
|
|
|
|
|
|
item => item.index === row.index |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
if (indexToRemove !== -1) { |
|
|
|
|
|
|
|
OversizedbillingData.value.splice(indexToRemove, 1); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
console.log(res, '删除成功'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
let indexToRemove = OversizedbillingData.value.findIndex(item => item.index === row.index); |
|
|
|
if (indexToRemove !== -1) { |
|
|
|
if (indexToRemove !== -1) { |
|
|
|
form.value.Oversizedbilling.splice(indexToRemove, 1); |
|
|
|
OversizedbillingData.value.splice(indexToRemove, 1); |
|
|
|
} |
|
|
|
} |
|
|
|
console.log(res, '删除成功'); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}) |
|
|
|
} else { |
|
|
|
.catch(() => {}); |
|
|
|
let indexToRemove = form.value.Oversizedbilling.findIndex(item => item.index === row.index); |
|
|
|
|
|
|
|
if (indexToRemove !== -1) { |
|
|
|
|
|
|
|
form.value.Oversizedbilling.splice(indexToRemove, 1); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
// 字典公共函数 |
|
|
|
// 字典公共函数 |
|
|
@ -927,10 +960,10 @@ function updateDictionary(targetArray, dictionaryType) { |
|
|
|
const GetRegion = () => { |
|
|
|
const GetRegion = () => { |
|
|
|
$_ObtainRegion().then(res => { |
|
|
|
$_ObtainRegion().then(res => { |
|
|
|
console.log(res, '地区。。。'); |
|
|
|
console.log(res, '地区。。。'); |
|
|
|
console.log(form.value.Oversizedbilling, 'form.value.Oversizedbilling'); |
|
|
|
console.log(OversizedbillingData.value, 'OversizedbillingData.value'); |
|
|
|
if (res.data.code === 200) { |
|
|
|
if (res.data.code === 200) { |
|
|
|
regionList.value = res.data.data; |
|
|
|
regionList.value = res.data.data; |
|
|
|
form.value.Oversizedbilling.forEach(item => { |
|
|
|
OversizedbillingData.value.forEach(item => { |
|
|
|
item['options'] = res.data.data; |
|
|
|
item['options'] = res.data.data; |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
@ -938,7 +971,9 @@ const GetRegion = () => { |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
const onLoad = async () => { |
|
|
|
const onLoad = async () => { |
|
|
|
copyform.value = await deepClone(form.value); |
|
|
|
if(!Object.keys(copyform.value).length){ |
|
|
|
|
|
|
|
copyform.value = await deepClone(form.value); |
|
|
|
|
|
|
|
} |
|
|
|
console.log(copyform.value, 'copyform.value'); |
|
|
|
console.log(copyform.value, 'copyform.value'); |
|
|
|
if ($route.query.id || props.templateData.id) { |
|
|
|
if ($route.query.id || props.templateData.id) { |
|
|
|
console.log('执行了'); |
|
|
|
console.log('执行了'); |
|
|
@ -947,26 +982,31 @@ const onLoad = async () => { |
|
|
|
type: activeName.value, |
|
|
|
type: activeName.value, |
|
|
|
templateId: $route.query.id || props.templateData.id, |
|
|
|
templateId: $route.query.id || props.templateData.id, |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
Pageloading.value = true; |
|
|
|
$_expenseDispatchPricepage(data).then(res => { |
|
|
|
$_expenseDispatchPricepage(data) |
|
|
|
console.log(res, '车型'); |
|
|
|
.then(res => { |
|
|
|
if (res.data.code == 200) { |
|
|
|
console.log(res, '车型'); |
|
|
|
dispatchSubjoinCategoryData.value = []; |
|
|
|
if (res.data.code == 200) { |
|
|
|
let _data = {}; |
|
|
|
dispatchSubjoinCategoryData.value = []; |
|
|
|
if (res.data.data.records?.length) { |
|
|
|
let _data = {}; |
|
|
|
res.data.data.records.forEach((item, index) => { |
|
|
|
if (res.data.data.records?.length) { |
|
|
|
_data = { |
|
|
|
res.data.data.records.forEach((item, index) => { |
|
|
|
index: index + 1, |
|
|
|
_data = { |
|
|
|
carModel: item.carModel, |
|
|
|
index: index + 1, |
|
|
|
options: [...optionsVehicle.value], |
|
|
|
carModel: item.carModel, |
|
|
|
loading: false, |
|
|
|
options: [...optionsVehicle.value], |
|
|
|
id: item.id, |
|
|
|
loading: false, |
|
|
|
}; |
|
|
|
id: item.id, |
|
|
|
dispatchSubjoinCategoryData.value.push(_data); |
|
|
|
}; |
|
|
|
}); |
|
|
|
dispatchSubjoinCategoryData.value.push(_data); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
}); |
|
|
|
.catch(error => {}) |
|
|
|
|
|
|
|
.finally(() => { |
|
|
|
|
|
|
|
Pageloading.value = false; |
|
|
|
|
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
}; |
|
|
|
// 页面初始化 |
|
|
|
// 页面初始化 |
|
|
|