diff --git a/client/src/pages/BossPage.tsx b/client/src/pages/BossPage.tsx
index 017e830..8008deb 100644
--- a/client/src/pages/BossPage.tsx
+++ b/client/src/pages/BossPage.tsx
@@ -331,7 +331,7 @@ export function BossPage() {
`${e.name}`}>
{pieData.map((_: any, i: number) => | )}
- formatCurrency(v)} />
+ [formatCurrency(v), '金额']} />
@@ -346,7 +346,7 @@ export function BossPage() {
v >= 10000 ? `${(v / 10000).toFixed(0)}万` : v} tick={{ fontSize: 10 }} />
- formatCurrency(v)} />
+ [formatCurrency(v), '实收']} />
d.code && navigate(`/stores/${d.code}`)}>
{rankingData.map((entry, i) => (
|