This commit is contained in:
‘937886381’
2025-11-14 17:04:22 +08:00
parent 3d167e8d71
commit dfa4ff3f54
28 changed files with 684 additions and 141 deletions

View File

@@ -67,13 +67,22 @@ export default {
return {
chart: null,
parentItemList: [
{ name: "月度", targetValue: 0, value: 0, proportion: 0, route:'profitAnalysis' },
{ name: "度", targetValue: 0, value: 0, proportion: 0, route: 'profitAnalysis' },
// { unit: "单价", targetValue: 20, currentValue: 16, progress: 80 },
// { unit: "净价", targetValue: 20, currentValue: 16, progress: 80 },
// { unit: "销量", targetValue: 20, currentValue: 16, progress: 80 },
// { unit: "双镀面板", targetValue: 15, currentValue: 13.8, progress: 92 },
// { unit: "溢价产品销量", targetValue: 15, currentValue: 13.8, progress: 92 }
{
name: "度",
targetValue: 80,
value: 76,
proportion: 95,
route: 'profitAnalysis',
completed: 0 // 未达目标值,不达标
},
{
name: "年度",
targetValue: 900,
value: 920,
proportion: 102.2,
route: 'profitAnalysis',
completed: 1 // 超出目标值,达标
}
]
}
},