// 日期信息接口定义 export interface DateInfo { year: number; // 年份 month: number; // 月份(1-12) day: number; // 日期(1-31) week: string; // 星期(中文) }