123456789101112131415161718192021222324 |
- //
- // CTMediator+ASTargerts.h
- // Asteria
- //
- // Created by 王猛 on 2023/5/17.
- //
- #import <CTMediator/CTMediator.h>
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CTMediator (ASTargerts)
- -(UIViewController *)B_viewControllerWithContentText:(NSDictionary *)params;
- ///商品详情页面
- -(UIViewController *)Goods_GoodsDetaileC:(NSDictionary *)params;
- ///登录页面
- -(UIViewController *)Login_LoginC:(NSDictionary *)params;
- -(UIViewController *)getUserCenterVc:(NSDictionary *)params;
- @end
- NS_ASSUME_NONNULL_END
|