This commit is contained in:
make
2025-04-03 17:14:45 +08:00
parent 845300b1cc
commit ab696c016b
3 changed files with 26 additions and 33 deletions

View File

@@ -554,20 +554,12 @@ class Novel extends BaseController
// 上一章节和下一章节
$arrPreChapter = $ChapterModel->getPreChapter($arrChapter['n_id'], $arrChapter['c_sort_num'], $arrChapter['c_page']);
$arrNextChapter = $ChapterModel->getNextChapter($arrChapter['n_id'], $arrChapter['c_sort_num'], $arrChapter['c_page']);
// FIXME 分类:男生和女生所对应的分类,看导航展示
// FIXED BY 已经修复
$arrCategoryAll = CategoryModel::$arrCategoryAll;
// FIXME 这个小说的 分类拼音
// FIXED BY 已经修复
// FIXME 这个小说 是属于 女生还是男生
// FIXED BY 已经修复
View::assign([
'arrNovel' => $arrNovel,
'arrCategoryAll' => $arrCategoryAll,
'arrChapter' => $arrChapter,
'arrPreChapter' => $arrPreChapter,
'arrNextChapter' => $arrNextChapter,