assistant-todo-mobile/src/pages/PersonalCenter/columnSortConstant.js

13 lines
459 B
JavaScript
Raw Normal View History

2025-01-17 06:21:37 -05:00
export const columnSortConstant = [
[
{ label: '创建时间', value: 'createdDate' },
{ label: '修改时间', value: 'lastModifiedDate' },
{ label: '期望开始时间', value: 'expectedStartTime' },
{ label: '期望结束时间', value: 'expectedEndTime' },
{ label: '任务优先级', value: 'priority' },
],
[
{ label: '升序', value: 'am' },
{ label: '降序', value: 'pm' },
],
]