v4.0.8任务和版本状态增加“已停止”
CI / verify (pull_request) Waiting to run

This commit is contained in:
2026-09-02 06:28:47 +08:00
parent bbb13cfd1a
commit a88fd6c29a
10 changed files with 44 additions and 18 deletions
+4 -2
View File
@@ -22,11 +22,11 @@ export const DEV_PLAN_TASK_TYPE_LABELS: Record<DevPlanTaskTypeDto, string> = {
/** 开发计划任务状态 */
export type DevPlanTaskStatusDto = 'TODO' | 'IN_PROGRESS' | 'DEVELOPED' | 'RELEASED';
export type DevPlanTaskStatusDto = 'TODO' | 'IN_PROGRESS' | 'DEVELOPED' | 'RELEASED' | 'STOPPED';
export const DEV_PLAN_TASK_STATUSES = ['TODO', 'IN_PROGRESS', 'DEVELOPED', 'RELEASED'] as const;
export const DEV_PLAN_TASK_STATUSES = ['TODO', 'IN_PROGRESS', 'DEVELOPED', 'RELEASED', 'STOPPED'] as const;
@@ -40,6 +40,8 @@ export const DEV_PLAN_TASK_STATUS_LABELS: Record<DevPlanTaskStatusDto, string> =
RELEASED: '已上线',
STOPPED: '已停止',
};