chore: add more log types

This commit is contained in:
JustSong
2023-06-10 16:31:40 +08:00
parent 74f508e847
commit d29c273073
4 changed files with 19 additions and 2 deletions

View File

@@ -18,6 +18,10 @@ function renderType(type) {
return <Label basic color='green'> 充值 </Label>;
case 2:
return <Label basic color='olive'> 消费 </Label>;
case 3:
return <Label basic color='orange'> 管理 </Label>;
case 4:
return <Label basic color='red'> 系统 </Label>;
default:
return <Label basic color='black'> 未知 </Label>;
}