任务模块

This commit is contained in:
‘Liammcl’
2024-12-28 19:23:54 +08:00
parent b7802abb2d
commit 4c9601b949
9 changed files with 1109 additions and 181 deletions

8
src/utils/enum.js Normal file
View File

@@ -0,0 +1,8 @@
export const STATUS_OPTIONS = [
{ label: '未开始', value: 'not_started' },
{ label: '进行中', value: 'in_progress' },
{ label: '已完成', value: 'completed' },
{ label: '已暂停', value: 'paused' },
{ label: '延期中', value: 'paused' }
];