Explorar el Código

增加审核通过状态

zhaoyang hace 3 días
padre
commit
ced6ae70d6
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/views/operationManagement/activityDetail.vue

+ 2 - 1
src/views/operationManagement/activityDetail.vue

@@ -233,7 +233,8 @@ const getStatusLabel = (status: number) => {
     3: "审核驳回",
     5: "进行中",
     6: "已下架",
-    7: "已结束"
+    7: "已结束",
+    8: "审核通过"
   };
   return statusMap[status] || "--";
 };