CTMediator+ASTargerts.m 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // CTMediator+ASTargerts.m
  3. // Asteria
  4. //
  5. // Created by 王猛 on 2023/5/17.
  6. //
  7. #import "CTMediator+ASTargerts.h"
  8. @implementation CTMediator (ASTargerts)
  9. -(UIViewController *)B_viewControllerWithContentText:(NSDictionary *)params{
  10. return [self performTarget:@"B" action:@"viewController" params:params shouldCacheTarget:NO];
  11. }
  12. -(UIViewController *)Login_LoginC:(NSDictionary *)params{
  13. return [self performTarget:@"Login" action:@"AS_LoginC" params:params shouldCacheTarget:NO];
  14. }
  15. -(UIViewController *)Goods_GoodsDetailsC:(NSDictionary *)params{
  16. return [self performTarget:@"Goods" action:@"AS_GoodsDetailsC" params:params shouldCacheTarget:NO];
  17. }
  18. -(UIViewController *)Goods_GoodsSizeC:(NSDictionary *)params{
  19. return [self performTarget:@"Goods" action:@"AS_GoodsSizeC" params:params shouldCacheTarget:NO];
  20. }
  21. -(UIViewController *)Goods_WriteReview:(NSDictionary *)params{
  22. return [self performTarget:@"Goods" action:@"WriteReview" params:params shouldCacheTarget:NO];
  23. }
  24. -(UIViewController*)Cart_MyCartC:(NSDictionary *)params{
  25. return [self performTarget:@"Cart" action:@"Cart_MyCartC" params:params shouldCacheTarget:NO];
  26. }
  27. @end