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

@@ -41,15 +41,61 @@ export default {
chart: null,
parentItemList: [
{
name: "利润总额", targetValue: 0, value: 0, proportion: 0,
route:'profitAnalysis'
},
{ name: "毛利率", targetValue: 0, value: 0, proportion: 0, route: 'profitAnalysis' },
{ name: "单价", targetValue: 0, value: 0, proportion: 0, route: 'cost/cost' },
{ name: "净价", targetValue: 0, value: 0, proportion: 0, route: 'cost/cost' },
{ name: "销量", targetValue: 0, value: 0, proportion: 0, route: 'profitAnalysis' },
{ name: "双镀面板", targetValue: 0, value: 0, proportion: 0, route: 'profitAnalysis' },
{ name: "溢价产品销量", targetValue: 0, value: 0, proportion: 0, route: 'profitAnalysis' }
name: "利润总额",
targetValue: 50,
value: 58,
proportion: 116,
route: 'profitAnalysis',
completed: 1 // 实际超目标,达标
},
{
name: "毛利率",
targetValue: 30,
value: 28.5,
proportion: 95,
route: 'profitAnalysis',
completed: 0 // 未达30%目标,不达标
},
{
name: "单价",
targetValue: 12,
value: 12.5,
proportion: 104.2,
route: 'cost/cost',
completed: 1 // 单价达标
},
{
name: "净价",
targetValue: 9,
value: 8.8,
proportion: 97.8,
route: 'cost/cost',
completed: 0 // 未达目标,不达标
},
{
name: "销量",
targetValue: 100,
value: 120,
proportion: 120,
route: 'profitAnalysis',
completed: 1 // 销量超额达标
},
{
name: "双镀面板",
targetValue: 30,
value: 29,
proportion: 96.7,
route: 'profitAnalysis',
completed: 0 // 略低目标,不达标
},
{
name: "溢价产品销量",
targetValue: 15,
value: 18,
proportion: 120,
route: 'profitAnalysis',
completed: 1 // 超额达标
}
]
}
},