CTMediator+Home.m 467 B

1234567891011121314151617181920
  1. //
  2. // CTMediator+Home.m
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/6/5.
  6. //
  7. #import "CTMediator+Home.h"
  8. @implementation CTMediator (Home)
  9. -(UIViewController *)getHomeVc:(NSDictionary *)params{
  10. return [self performTarget:@"Home" action:@"getHomeVc" params:params shouldCacheTarget:NO];
  11. }
  12. -(UIViewController *)getProductListVc:(NSDictionary *)params{
  13. return [self performTarget:@"Home" action:@"getProductListVc" params:params shouldCacheTarget:NO];
  14. }
  15. @end