RQRetrainModule.m 762 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // RQRetrainModule.m
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/4/13.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQRetrainModule.h"
  9. @interface RQRetrainModule ()
  10. @end
  11. @implementation RQRetrainModule
  12. static id rq_retrainModule = nil;
  13. #pragma mark - init
  14. + (instancetype)sharedInstance {
  15. static dispatch_once_t onceToken;
  16. dispatch_once(&onceToken, ^{
  17. rq_retrainModule = [[self alloc] init];
  18. });
  19. return rq_retrainModule;
  20. }
  21. - (instancetype)init {
  22. if (self = [super init]) {
  23. }
  24. return self;
  25. }
  26. #pragma mark - PublicMethods
  27. - (void)gotoOrderRetain {
  28. [RQ_APPDELEGATE.services pushViewModel:[[RQRetrainViewModel alloc] initWithServices:RQ_APPDELEGATE.services params:nil] animated:YES];
  29. }
  30. @end