1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // CTMediator+ASTargerts.m
- // Asteria
- //
- // Created by 王猛 on 2023/5/17.
- //
- #import "CTMediator+ASTargerts.h"
- @implementation CTMediator (ASTargerts)
- -(UIViewController *)B_viewControllerWithContentText:(NSDictionary *)params{
- return [self performTarget:@"B" action:@"viewController" params:params shouldCacheTarget:NO];
- }
- -(UIViewController *)Login_LoginC:(NSDictionary *)params{
- return [self performTarget:@"Login" action:@"AS_LoginC" params:params shouldCacheTarget:NO];
- }
- -(UIViewController *)Goods_GoodsDetailsC:(NSDictionary *)params{
- return [self performTarget:@"Goods" action:@"AS_GoodsDetailsC" params:params shouldCacheTarget:NO];
- }
- -(UIViewController *)Goods_GoodsSizeC:(NSDictionary *)params{
- return [self performTarget:@"Goods" action:@"AS_GoodsSizeC" params:params shouldCacheTarget:NO];
- }
- -(UIViewController *)Goods_WriteReview:(NSDictionary *)params{
- return [self performTarget:@"Goods" action:@"WriteReview" params:params shouldCacheTarget:NO];
- }
- -(UIViewController*)Cart_MyCartC:(NSDictionary *)params{
- return [self performTarget:@"Cart" action:@"Cart_MyCartC" params:params shouldCacheTarget:NO];
- }
- @end
|