| 1234567891011121314151617181920 |
- //
- // CTMediator+Home.m
- // Asteria
- //
- // Created by iOS on 2023/6/5.
- //
- #import "CTMediator+Home.h"
- @implementation CTMediator (Home)
- -(UIViewController *)getHomeVc:(NSDictionary *)params{
- return [self performTarget:@"Home" action:@"getHomeVc" params:params shouldCacheTarget:NO];
- }
- -(UIViewController *)getProductListVc:(NSDictionary *)params{
- return [self performTarget:@"Home" action:@"getProductListVc" params:params shouldCacheTarget:NO];
- }
- @end
|