|
|
|
@ -804,7 +804,17 @@
|
|
|
|
|
<span>待处理</span> |
|
|
|
|
</div> |
|
|
|
|
<div class="mt10"> |
|
|
|
|
<span class="data mr5px">{{ abnormal_Info.noDealNum }}</span> |
|
|
|
|
<span |
|
|
|
|
class="data mr5px underline" |
|
|
|
|
@click=" |
|
|
|
|
() => |
|
|
|
|
handleShowAbnormalData('异常数据', noDealNum, { |
|
|
|
|
tip: '总单数', |
|
|
|
|
prop: 'noDealNum', |
|
|
|
|
}) |
|
|
|
|
" |
|
|
|
|
>{{ abnormal_Info.noDealNum }}</span |
|
|
|
|
> |
|
|
|
|
<span class="">单</span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -1492,6 +1502,7 @@ import {
|
|
|
|
|
postAllocationDataByWarehouseId, |
|
|
|
|
postHandOrderDataByWarehouseId, |
|
|
|
|
postTrunklineCarsDataByWarehouseId, |
|
|
|
|
$_aftersalesData, |
|
|
|
|
} from '@/api/wel/index'; |
|
|
|
|
import { exportExcelByDom } from '@/utils/export'; |
|
|
|
|
import * as echarts from 'echarts'; |
|
|
|
@ -1569,14 +1580,16 @@ const details = reactive({
|
|
|
|
|
}, |
|
|
|
|
/** 异常卸车数据 */ |
|
|
|
|
unloadAbnormalDataInfo: { |
|
|
|
|
abnormalDayRate: '0', |
|
|
|
|
abnormalMonthRate: '0', |
|
|
|
|
abnormalDayRate: 0, |
|
|
|
|
abnormalMonthRate: 0, |
|
|
|
|
noDealDayNum: 0, |
|
|
|
|
noDealMonthNum: 0, |
|
|
|
|
sendDayNum: 0, |
|
|
|
|
sendMonthNum: 0, |
|
|
|
|
unloadDayNum: 0, |
|
|
|
|
unloadMonthNum: 0, |
|
|
|
|
dayData: [], |
|
|
|
|
monthData: [], |
|
|
|
|
}, |
|
|
|
|
/** 配送数据 */ |
|
|
|
|
deliveryDataInfo: {}, |
|
|
|
@ -1756,15 +1769,48 @@ const initTrunklineCarsData = async () => {
|
|
|
|
|
details.loadingObj.trunklineCarsData = false; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
function accumulateData(targetInfo, dataArray, isMonthly) { |
|
|
|
|
for (let i = 0; i < dataArray.length; i++) { |
|
|
|
|
const item = dataArray[i]; |
|
|
|
|
if (isMonthly) { |
|
|
|
|
targetInfo.sendMonthNum += item.totalNum; //发起数 |
|
|
|
|
targetInfo.noDealMonthNum += item.unCompleteNum; //待处理 |
|
|
|
|
targetInfo.abnormalMonthRate += item.completeNum; //异常率 |
|
|
|
|
} else { |
|
|
|
|
targetInfo.sendDayNum += item.totalNum; //发起数 |
|
|
|
|
targetInfo.noDealDayNum += item.unCompleteNum; //待处理 |
|
|
|
|
targetInfo.abnormalDayRate += item.completeNum; //异常率 |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** 卸车异常数据 */ |
|
|
|
|
/**异常数据 */ |
|
|
|
|
const initUnloadAbnormalData = async () => { |
|
|
|
|
return |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.unloadAbnormalData = true; |
|
|
|
|
const res = await postUnloadAbnormalData({}); |
|
|
|
|
const res = await $_aftersalesData({}); |
|
|
|
|
console.log('resw:>> ', res); |
|
|
|
|
|
|
|
|
|
const { code, data } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
details.unloadAbnormalDataInfo = data || {}; |
|
|
|
|
console.log(data, '异常数据'); |
|
|
|
|
|
|
|
|
|
// 处理 dayData |
|
|
|
|
await accumulateData(details.unloadAbnormalDataInfo, data.dayData, false); |
|
|
|
|
|
|
|
|
|
// 处理 monthData |
|
|
|
|
await accumulateData(details.unloadAbnormalDataInfo, data.monthData, true); |
|
|
|
|
|
|
|
|
|
// 计算异常率 |
|
|
|
|
details.unloadAbnormalDataInfo.abnormalMonthRate = |
|
|
|
|
(details.unloadAbnormalDataInfo.abnormalMonthRate / |
|
|
|
|
details.unloadAbnormalDataInfo.sendMonthNum) * |
|
|
|
|
100; |
|
|
|
|
|
|
|
|
|
details.unloadAbnormalDataInfo.abnormalDayRate = |
|
|
|
|
(details.unloadAbnormalDataInfo.abnormalDayRate / details.unloadAbnormalDataInfo.sendDayNum) * |
|
|
|
|
100; |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
@ -2251,7 +2297,6 @@ const handleDetails = async (type, title, optionObj: OptionObjType) => {
|
|
|
|
|
case 'trunklineCarsDataColumn': |
|
|
|
|
res = await postTrunklineCarsDataByWarehouseId({}); |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
default: |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
@ -2284,6 +2329,23 @@ const handleShowDeliveryDetail = (
|
|
|
|
|
|
|
|
|
|
const { data } = details.deliveryDataInfo[type]; |
|
|
|
|
|
|
|
|
|
handleShowEcharts(data, title, optionObj); |
|
|
|
|
}; |
|
|
|
|
/** 显示售后异常数据 */ |
|
|
|
|
|
|
|
|
|
const handleShowAbnormalData = (title, type: 'noDealNum', optionObj: any = {}) => { |
|
|
|
|
details.popUpShow.isShow = true; |
|
|
|
|
details.title = title; |
|
|
|
|
console.log(optionObj, 'optionObj'); |
|
|
|
|
console.log(type, 'type'); |
|
|
|
|
console.log(title, 'title'); |
|
|
|
|
|
|
|
|
|
if (getObjType(details.unloadAbnormalDataInfo[type]) !== 'object') return; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const { data } = details.deliveryDataInfo[type]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handleShowEcharts(data, title, optionObj); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|