feat: 增加积分模块

This commit is contained in:
2026-08-31 15:23:17 +08:00
parent b058394b42
commit 9c6895caf1
8 changed files with 192 additions and 2 deletions

View File

@@ -113,7 +113,13 @@ const chartOpts = {
enableScroll: false,
legend: { show: true },
xAxis: { disableGrid: true },
yAxis: { gridType: 'dash', dashLength: 2 },
yAxis: {
gridType: 'dash',
dashLength: 2,
data: [
{ min: 0, format: (val: number) => val.toFixed(1) }
]
},
extra: {
line: { type: 'straight', width: 2, activeType: 'hollow'},
},