增加巡检页面

This commit is contained in:
xuli
2025-11-14 18:30:34 +08:00
parent 6bca60840b
commit a6cc5ff885
19 changed files with 1167 additions and 36 deletions

View File

@@ -18,3 +18,14 @@ export function formatLevel(type){
return result[type];
}
// 任务(巡检)状态 1=未发布 2=已发布 3 进行中or执行中 4 已完成 5 已过期
export function formatTaskStatus(status){
const result = {
1:'未发布',
2:'已发布',
3:'执行中',
4:'已完成',
5:'已过期',
}
return result[status];
}