bill 8 months ago
parent
commit
ee561171d6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/store/scene.ts

+ 2 - 2
src/store/scene.ts

@@ -166,7 +166,7 @@ export enum SceneStatus {
   ERR = -1,
   RUN = 0,
   SUCCESS = 1,
-  // DEL = 2,
+  ARCHIVE = 2,
   // ARCHIVE = 3,
   // RERUN = 4,
 }
@@ -184,7 +184,7 @@ export const SceneTypeDesc: { [key in SceneType]: string } = {
 
 export const SceneStatusDesc: { [key in SceneStatus]: string } = {
   // [SceneStatus.DEL]: "场景被删",
-  // [SceneStatus.ARCHIVE]: "封存",
+  [SceneStatus.ARCHIVE]: "封存",
   // [SceneStatus.RERUN]: "重新计算中",
   [SceneStatus.RUN]: "计算中",
   [SceneStatus.ERR]: "计算失败",