|
@@ -20,6 +20,7 @@
|
|
|
#import "NoticeSourceModel.h"
|
|
|
#import "HomeRecentCourseView.h"
|
|
|
#import "AccompanyDetailViewController.h"
|
|
|
+#import "VipCouseDetailViewController.h"
|
|
|
#import "RecentCourseModel.h"
|
|
|
#import "AppDelegate.h"
|
|
|
#import "MusicRoomViewController.h"
|
|
@@ -1152,6 +1153,13 @@
|
|
|
ctrl.courseGroupId = courseModel.courseGroupId;
|
|
|
[self.navigationController pushViewController:ctrl animated:YES];
|
|
|
}
|
|
|
+ else if (type == RECENTCOURSE_TYPE_VIP) { //VIP 定制课
|
|
|
+ VipCouseDetailViewController *detailVC = [[VipCouseDetailViewController alloc] init];
|
|
|
+ detailVC.courseId = courseModel.courseId;
|
|
|
+ detailVC.courseGroupId = courseModel.courseGroupId;
|
|
|
+ detailVC.studentId = courseModel.studentId;
|
|
|
+ [self.navigationController pushViewController:detailVC animated:YES];
|
|
|
+ }
|
|
|
else {
|
|
|
KSBaseWKWebViewController *ctrl = [[KSBaseWKWebViewController alloc] init];
|
|
|
ctrl.url = [NSString stringWithFormat:@"%@/#/liveDetail?joinRoom=1&groupId=%@&classId=%@", WEBHOST, courseModel.courseGroupId,courseModel.courseId];
|