RQExplainVideoViewModel.m 607 B

123456789101112131415161718192021222324
  1. //
  2. // RQExplainVideoViewModel.m
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2022/7/5.
  6. //
  7. #import "RQExplainVideoViewModel.h"
  8. @interface RQExplainVideoViewModel ()
  9. @property (nonatomic, readwrite, strong) RQYDTJSModel *ydtjsModel;
  10. @end
  11. @implementation RQExplainVideoViewModel
  12. - (instancetype)initWithServices:(id<RQViewModelServices>)services params:(NSDictionary *)params {
  13. if (self = [super initWithServices:services params:params]) {
  14. self.title = @"视频讲解";
  15. self.ydtjsModel = params[RQViewModelUtilKey];
  16. self.prefersNavigationBarHidden = YES;
  17. }
  18. return self;
  19. }
  20. @end