chore: 更新依赖, 支持日程表单日多日程

This commit is contained in:
Megghy
2025-09-30 09:48:57 +08:00
parent 7c516559f1
commit 6fd046adcd
15 changed files with 1307 additions and 482 deletions

View File

@@ -413,13 +413,22 @@ export interface LotteryUserCardInfo {
export interface ScheduleWeekInfo {
year: number
week: number
days: ScheduleDayInfo[]
days: ScheduleDayInfo[][]
}
export interface ScheduleDayInfo {
title: string | null
tag: string | null
tagColor: string | null
time: string | null
id: string | null
}
export interface BatchScheduleRequest {
startYear: number
startWeek: number
count: number
dayOfWeek: number
schedule: ScheduleDayInfo
}
export enum ThemeType {
Auto = 'auto',