mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-11-10 22:57:15 +08:00
新增:新增系统管理/菜单管理(列表、创建、修改、删除、导出)
This commit is contained in:
@@ -35,37 +35,37 @@
|
||||
label: '今天',
|
||||
value: (): Date[] => [
|
||||
dayjs().startOf('day').toDate(),
|
||||
dayjs().toDate()
|
||||
]
|
||||
dayjs().toDate(),
|
||||
],
|
||||
},
|
||||
{
|
||||
label: '昨天',
|
||||
value: (): Date[] => [
|
||||
dayjs().subtract(1, 'day').startOf('day').toDate(),
|
||||
dayjs().subtract(1, 'day').endOf('day').toDate()
|
||||
]
|
||||
dayjs().subtract(1, 'day').endOf('day').toDate(),
|
||||
],
|
||||
},
|
||||
{
|
||||
label: '本周',
|
||||
value: (): Date[] => [
|
||||
dayjs().startOf('week').add(1, 'day').toDate(),
|
||||
dayjs().toDate()
|
||||
]
|
||||
dayjs().toDate(),
|
||||
],
|
||||
},
|
||||
{
|
||||
label: '本月',
|
||||
value: (): Date[] => [
|
||||
dayjs().startOf('month').toDate(),
|
||||
dayjs().toDate()
|
||||
]
|
||||
dayjs().toDate(),
|
||||
],
|
||||
},
|
||||
{
|
||||
label: '本年',
|
||||
value: (): Date[] => [
|
||||
dayjs().startOf('year').toDate(),
|
||||
dayjs().toDate()
|
||||
]
|
||||
}
|
||||
dayjs().toDate(),
|
||||
],
|
||||
},
|
||||
];
|
||||
});
|
||||
</script>
|
||||
@@ -76,4 +76,4 @@
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="less"></style>
|
||||
<style scoped lang="less"></style>
|
||||
|
||||
Reference in New Issue
Block a user