refactor: 收敛重复的 Markdown 渲染与应用状态常量
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import type { TaskApplication } from "@/api/tasks";
|
||||
|
||||
export const applicationStatusOptions: { label: string; value: TaskApplication["status"] }[] = [
|
||||
{ label: "待应用", value: "TODO" },
|
||||
{ label: "进行中", value: "DOING" },
|
||||
{ label: "已完成", value: "DONE" },
|
||||
];
|
||||
Reference in New Issue
Block a user