diff --git a/packages-user/client-modules/src/render/ui/statistics.tsx b/packages-user/client-modules/src/render/ui/statistics.tsx index a8b3db6..7b1e3c3 100644 --- a/packages-user/client-modules/src/render/ui/statistics.tsx +++ b/packages-user/client-modules/src/render/ui/statistics.tsx @@ -48,7 +48,8 @@ export const Statistics = defineComponent(props => { ; const TotalStatistics = defineComponent(props => { - return () => ( - - - - ); + return () => { + const total = props.data.total; + + const text1 = `全塔地图中,共有怪物${total.enemyCount}个。`; + const text2 = `共有宝石${total.gemCount}个,共加攻击力${total.atkValue}点、防御力${total.defValue}点,魔防${total.mdefValue}点。`; + const text3 = `共有血瓶${total.potionCount}个,共加生命值${total.potionValue}点。`; + + return ( + + ); + }; }, statisticsPanelProps); const FloorStatistics = defineComponent(props => {