debug
This commit is contained in:
@@ -13,6 +13,7 @@ use app\model\NovelModel;
|
||||
use storage\StorageCore;
|
||||
use think\facade\View;
|
||||
use app\Request;
|
||||
use app\task\crawler\zw630\page\ChapterPage;
|
||||
use template\page\CusteomPage02;
|
||||
|
||||
class Novel extends BaseController
|
||||
@@ -329,10 +330,22 @@ class Novel extends BaseController
|
||||
// 小说详情
|
||||
$arrNovel = $NovelModel->getNovelInfo($intNId);
|
||||
|
||||
// 分品拼音
|
||||
$arrNovel['category_pinyin'] = CategoryModel::getPinYinByZh($arrNovel['og_novel_category']);
|
||||
|
||||
|
||||
// 最后章节
|
||||
$ChapterModel = new ChapterModel;
|
||||
$arrLatestChapter = $ChapterModel->getLatestChapter($intNId);
|
||||
|
||||
// 要点
|
||||
$strFocus = strip_tags($arrLatestChapter['content']);
|
||||
$intCount = mb_strlen($strFocus);
|
||||
if ($intCount > 300) {
|
||||
$intPos = mt_rand(0, $intCount - 300);
|
||||
$strFocus = mb_substr($strFocus, $intPos, 300);
|
||||
}
|
||||
|
||||
// 最近五个章节
|
||||
$arrChapter = $ChapterModel->getChapterAll([
|
||||
'n_id' => $intNId,
|
||||
@@ -365,7 +378,7 @@ class Novel extends BaseController
|
||||
'arrNovel' => $arrNovel,
|
||||
'arrChapter' => $arrChapter,
|
||||
'arrNovelClicks' => $arrNovelClicks,
|
||||
'arrLatestChapter' => $arrLatestChapter,
|
||||
'strFocus' => $strFocus,
|
||||
'strPageCode' => 'boy',
|
||||
'strTitle' => $strTitle,
|
||||
]);
|
||||
@@ -385,10 +398,22 @@ class Novel extends BaseController
|
||||
public function getNovelNewsChapter(Request $Request)
|
||||
{
|
||||
|
||||
$boolIsMobile = $Request->param('boolIsMobile');
|
||||
|
||||
$intNId = $Request->param('n_id');
|
||||
|
||||
// 小说详情
|
||||
$NovelModel = new NovelModel;
|
||||
$arrNovel = $NovelModel->getNovelInfo($intNId);
|
||||
|
||||
// 最新章节
|
||||
$ChapterModel = new ChapterModel;
|
||||
$arrChapter = $ChapterModel->getLatestChapter($intNId);
|
||||
|
||||
// 上一章节和下一章节
|
||||
$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']);
|
||||
|
||||
$boolIsMobile = $Request->param('boolIsMobile');
|
||||
|
||||
// 模拟数据-随机推荐数据10条
|
||||
$arrNewsNovel = [
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
<meta itemprop="position" content="1" />
|
||||
</li>
|
||||
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
||||
<a href="/pc/shuku/all" itemprop="item">
|
||||
<a href="/pc/shuku/all/{$arrNovel.category_pinyin}/all/page1" itemprop="item">
|
||||
<span itemprop="name">{$arrNovel.og_novel_category}</span>
|
||||
</a>
|
||||
<meta itemprop="position" content="2" />
|
||||
@@ -69,7 +69,7 @@
|
||||
<p class="jianjie">最新要点</p>
|
||||
<div class="c03_box">
|
||||
<p class="jj_con" id="book_desc2" >
|
||||
{$arrLatestChapter.content}</p>
|
||||
{$strFocus}</p>
|
||||
<span class="zk_btn" style="">展开<s></s></span>
|
||||
<span class="sq_btn" style="display: none;">收起<s></s></span>
|
||||
</div>
|
||||
@@ -91,7 +91,7 @@
|
||||
<div class="inf02">
|
||||
<h4>小说信息</h4>
|
||||
<p>类别:
|
||||
<a href='/pc{site:nurl n_id="$arrNovel[n_id]" n_py="$arrNovel[og_novel_pin_yin]" /}'
|
||||
<a href='/pc/shuku/all/{$arrNovel.category_pinyin}/all/page1'
|
||||
title="{$arrNovel.og_novel_category}" target="_blank">
|
||||
{$arrNovel.og_novel_category}
|
||||
</a>
|
||||
|
||||
Reference in New Issue
Block a user