-
我的积分
-
{userPoints.toLocaleString()}
+
我的Token
+
{userPoints >= 1000 ? `${(userPoints / 1000).toFixed(1)}K` : userPoints.toLocaleString()}
累计消费 ${typeof totalSpentUSD === 'number' ? totalSpentUSD.toFixed(2) : '--'}
@@ -152,8 +152,8 @@ export default function PointsMallPageWeb({ logic }: Props) {
options={[
{ value: 'popular', label: '热度优先' },
{ value: 'newest', label: '最新上架' },
- { value: 'price_asc', label: '积分从低到高' },
- { value: 'price_desc', label: '积分从高到低' },
+ { value: 'price_asc', label: 'Token从低到高' },
+ { value: 'price_desc', label: 'Token从高到低' },
]}
/>