CTMediator+ASTargerts.h 534 B

123456789101112131415161718192021222324
  1. //
  2. // CTMediator+ASTargerts.h
  3. // Asteria
  4. //
  5. // Created by 王猛 on 2023/5/17.
  6. //
  7. #import <CTMediator/CTMediator.h>
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CTMediator (ASTargerts)
  11. -(UIViewController *)B_viewControllerWithContentText:(NSDictionary *)params;
  12. ///商品详情页面
  13. -(UIViewController *)Goods_GoodsDetaileC:(NSDictionary *)params;
  14. ///登录页面
  15. -(UIViewController *)Login_LoginC:(NSDictionary *)params;
  16. -(UIViewController *)getUserCenterVc:(NSDictionary *)params;
  17. @end
  18. NS_ASSUME_NONNULL_END