优化图表大小及描述

This commit is contained in:
2026-04-08 16:25:36 +08:00
parent e5e006189d
commit 4fe45a55e0

View File

@@ -117,8 +117,8 @@
const monthAmountMap = new Map<string, number>();
sourceData.value.forEach((item) => {
if (!item.signDate) return;
const date = new Date(item.signDate);
if (!item.createTime) return;
const date = new Date(item.createTime);
if (Number.isNaN(date.getTime())) return;
const monthLabel = `${date.getMonth() + 1}`;
monthOrderMap.set(monthLabel, date.getMonth() + 1);