2
0

fix:终端界面状态中英修复

This commit is contained in:
zhongzm
2025-02-11 18:24:24 +08:00
parent eb883385e8
commit b6961c9cfd
3 changed files with 6 additions and 2 deletions

View File

@@ -73,9 +73,9 @@ const scrollConfig = computed(() => ({
const getAuthStatusText = (status: number) => {
switch (status) {
case 1:
return 'pending';
return t('page.terminal.pending');
case 2:
return 'authorized';
return t('page.terminal.authorized');
default:
return t('page.terminal.unknow');
}