12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // RQRetrainModule.m
- // jiaPei
- //
- // Created by 张嵘 on 2022/4/13.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQRetrainModule.h"
- @interface RQRetrainModule ()
- @end
- @implementation RQRetrainModule
- static id rq_retrainModule = nil;
- #pragma mark - init
- + (instancetype)sharedInstance {
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- rq_retrainModule = [[self alloc] init];
- });
- return rq_retrainModule;
- }
- - (instancetype)init {
- if (self = [super init]) {
-
- }
- return self;
- }
- #pragma mark - PublicMethods
- - (void)gotoOrderRetain {
- [RQ_APPDELEGATE.services pushViewModel:[[RQRetrainViewModel alloc] initWithServices:RQ_APPDELEGATE.services params:nil] animated:YES];
- }
- @end
|