2
0

feat:仪表盘中英文修复

This commit is contained in:
zhongzm
2025-01-23 20:56:06 +08:00
parent 6199041d21
commit 67e4f85a4e

View File

@@ -85,9 +85,9 @@ const baseData = ref<GaugeDisplayData[]>([
title: t('page.headerbanner.Remainingcredit'), title: t('page.headerbanner.Remainingcredit'),
value: 0, value: 0,
max: 100, max: 100,
unit: '元', unit: t('page.headerbanner.money'),
description: t('page.headerbanner.monthphonebill'), description: t('page.headerbanner.monthphonebill'),
subTitle: t('page.headerbanner.deviceCount') + ': 0台' subTitle: t('page.headerbanner.deviceCount') + `: 0${t('page.headerbanner.device')}`
}, },
{ {
id: 1, id: 1,
@@ -98,8 +98,8 @@ const baseData = ref<GaugeDisplayData[]>([
description: t('page.headerbanner.monthflowr'), description: t('page.headerbanner.monthflowr'),
subTitle: t('page.headerbanner.Used') + ': 0B', subTitle: t('page.headerbanner.Used') + ': 0B',
speedLimits: { speedLimits: {
upLimit: '无限制', upLimit: t('page.headerbanner.nolimit'),
downLimit: '无限制' downLimit: t('page.headerbanner.nolimit')
} }
} }
]); ]);