From eb0532b0ed613459085eb803605c2bb307db7e6d Mon Sep 17 00:00:00 2001
From: 杨锴 <841720330@qq.com>
Date: 星期一, 28 十月 2024 15:18:39 +0800
Subject: [PATCH] fix bug

---
 XQMuse/Root/Course/CCell/CourseOfficalCommendTopCCell.swift |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/XQMuse/Root/Course/CCell/CourseOfficalCommendTopCCell.swift b/XQMuse/Root/Course/CCell/CourseOfficalCommendTopCCell.swift
index 8431167..9d1340a 100644
--- a/XQMuse/Root/Course/CCell/CourseOfficalCommendTopCCell.swift
+++ b/XQMuse/Root/Course/CCell/CourseOfficalCommendTopCCell.swift
@@ -35,7 +35,9 @@
 								bannerModels = items
         view_bannerContentView.setItems(items: items) { m in
             if let id = m.courseId?.int{
-                JQ_currentNavigationController().pushViewController(CourseDetialVC(courseId: id))
+                let courseDetialVC = CourseDetialVC(courseId: id)
+                courseDetialVC.hidesBottomBarWhenPushed = true
+                JQ_currentNavigationController().pushViewController(courseDetialVC)
             }
         }
 				}

--
Gitblit v1.7.1