修改监控流程详情

This commit is contained in:
zhoulingpo
2023-04-21 17:04:51 +08:00
parent 6ed94496e7
commit 4fa262ebce
7 changed files with 166 additions and 421 deletions
+7
View File
@@ -5,3 +5,10 @@ export const PERMISSION = new Esenum([
{ label: '预览', value: 0 },
{ label: '预览+下载', value: 2 }
])
// 流程状态
export const PROCESSSTATE = new Esenum(
{
COMPLETED: {name: '已完成', index: 1},
INCOMPLETED: {name: '未完成', index: 0}
}
)