Files
manage/src/utils/enum.js
‘Liammcl’ 4c9601b949 任务模块
2024-12-28 19:23:54 +08:00

8 lines
276 B
JavaScript

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