feat(EventCenter): 添加活动中心模块

新增活动中心模块,包括官方活动、活动广场和我的活动三个页面。支持活动列表展示、倒计时功能及创建活动按钮。优化了页面切换和UI交互体验。
This commit is contained in:
AI Health Developer
2025-05-06 16:45:34 +08:00
parent a9538c61ff
commit 69863a91ff
40 changed files with 1065 additions and 97 deletions

View File

@@ -0,0 +1,21 @@
//
// EventCenterOfficialCell.h
// YuMi
//
// Created by P on 2025/4/29.
//
#import <UIKit/UIKit.h>
@class HomeBannerInfoModel;
NS_ASSUME_NONNULL_BEGIN
@interface EventCenterOfficialCell : UITableViewCell
@property (nonatomic, strong) HomeBannerInfoModel *cellModel;
// 更新倒计时天数
- (void)updateCountdownWithDays:(NSInteger)days;
@end
NS_ASSUME_NONNULL_END