style: 统一图表卡片中的引号为单引号

This commit is contained in:
超级老白兔
2025-09-09 09:51:07 +08:00
parent eb073b04ac
commit cb44735eec

View File

@@ -433,22 +433,22 @@ const Dashboard: React.FC<DashboardProps> = () => {
<Row gutter={[16, 16]} className={styles.chartsRow}>
<Col xs={24} sm={12} lg={6}>
<Card className={styles.chartCard}>
<ReactECharts option={lineOption} style={{ height: "300px" }} />
<ReactECharts option={lineOption} style={{ height: '300px' }} />
</Card>
</Col>
<Col xs={24} sm={12} lg={6}>
<Card className={styles.chartCard}>
<ReactECharts option={columnOption} style={{ height: "300px" }} />
<ReactECharts option={columnOption} style={{ height: '300px' }} />
</Card>
</Col>
<Col xs={24} sm={12} lg={6}>
<Card className={styles.chartCard}>
<ReactECharts option={pieOption} style={{ height: "300px" }} />
<ReactECharts option={pieOption} style={{ height: '300px' }} />
</Card>
</Col>
<Col xs={24} sm={12} lg={6}>
<Card className={styles.chartCard}>
<ReactECharts option={areaOption} style={{ height: "300px" }} />
<ReactECharts option={areaOption} style={{ height: '300px' }} />
</Card>
</Col>
</Row>