123456789101112131415161718192021222324 |
- //
- // RQExplainVideoViewModel.m
- // SDJK
- //
- // Created by 张嵘 on 2022/7/5.
- //
- #import "RQExplainVideoViewModel.h"
- @interface RQExplainVideoViewModel ()
- @property (nonatomic, readwrite, strong) RQYDTJSModel *ydtjsModel;
- @end
- @implementation RQExplainVideoViewModel
- - (instancetype)initWithServices:(id<RQViewModelServices>)services params:(NSDictionary *)params {
- if (self = [super initWithServices:services params:params]) {
- self.title = @"视频讲解";
- self.ydtjsModel = params[RQViewModelUtilKey];
- self.prefersNavigationBarHidden = YES;
- }
- return self;
- }
- @end
|