优化组件/更新

This commit is contained in:
gyq
2025-12-03 10:13:55 +08:00
parent 92f9776a35
commit 09b6e36a52
261 changed files with 22080 additions and 7238 deletions

View File

@@ -59,6 +59,7 @@ export type InfoType = {
isLeap : boolean;
}
// #ifndef APP-HARMONY
export type LunarInfoType = {
lYear : number;
lMonth : number;
@@ -79,6 +80,30 @@ export type LunarInfoType = {
Term ?: string;
astro ?: string
}
// #endif
// #ifdef APP-HARMONY
export interface LunarInfoType {
lYear : number;
lMonth : number;
lDay : number;
IMonthCn : string;
IDayCn : string;
cYear : number;
cMonth : number;
cDay : number;
gzYear ?: string;
gzMonth ?: string;
gzDay ?: string;
isToday : boolean;
isLeap : boolean;
nWeek ?: number;
ncWeek ?: string;
isTerm ?: boolean;
Term ?: string;
astro ?: string
}
// #endif
export class Lunar {