feat: support new log type

This commit is contained in:
JustSong
2025-01-31 21:49:34 +08:00
parent fa2a772731
commit d9f74bdff3
2 changed files with 4 additions and 1 deletions

View File

@@ -28,6 +28,8 @@ function renderType(type) {
return <Tag color="orange" size="large"> 管理 </Tag>;
case 4:
return <Tag color="purple" size="large"> 系统 </Tag>;
case 5:
return <Tag color="violet" size="large"> 测试 </Tag>;
default:
return <Tag color="black" size="large"> 未知 </Tag>;
}