调整显示

This commit is contained in:
Flow 2025-09-01 16:42:04 +08:00
parent ea23cfaf99
commit 0cce131855

View File

@ -82,8 +82,8 @@ const getDeviceTypeName = (type: string) => {
const getDeviceStatusName = (status: string | number) => {
const statusMap: Record<string | number, string> = {
0: '待激活',
1: '在线',
2: '离线'
1: '解锁',
2: '锁定'
}
return statusMap[status] || '未知状态'
}