123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // NYClassRoomPeiViewModel.m
- // jiaPei
- //
- // Created by Ning.ge on 2024/2/4.
- // Copyright © 2024 JCZ. All rights reserved.
- //
- #import "NYClassRoomPeiViewModel.h"
- @implementation NYClassRoomPeiViewModel
- - (instancetype)init {
- if (self = [super init]) {
- self.itemSize = CGSizeMake(RQ_SCREEN_WIDTH, RQ_FIT_HORIZONTAL(716.f));
- }
- return self;
- }
- - (NSString *)itemClassName {
- return @"NYClassRoomPeiCell";
- }
- - (NSString *)classIdStr{
- NSString *classIdStr = @"";
- if(self.cultivateInfoModel==nil){
- classIdStr = _classIdStr;
- }else{
- classIdStr = self.cultivateInfoModel.classid;
- }
- return classIdStr;
- }
- - (NSString *)classType{
- return self.isSimulationRoom?@"2":@"1";//模拟 2 课堂 1
- }
- //弹出科目选择
- -(void)showSelectSubjectView{
-
- }
- @end
|