增加待审批页面

This commit is contained in:
xuli3099
2025-08-22 21:58:11 +08:00
parent 8e8fdc02c6
commit ad49a47367
6 changed files with 285 additions and 9 deletions

View File

@@ -8,4 +8,13 @@ export function formatIOS(type){
return result[type];
}
// 紧急程度 1-紧急 2-急 3-一般
export function formatLevel(type){
const result = {
1:'紧急',
2:'急',
3:'一般',
}
return result[type];
}