From 955513f7682d69b4d4a6692b3e7c87589ef230b7 Mon Sep 17 00:00:00 2001 From: make Date: Mon, 14 Apr 2025 11:43:11 +0800 Subject: [PATCH 1/9] debug --- code/app/home/BaseController.php | 1 + code/app/home/controller/Index.php | 72 ++++++++++++------- code/app/home/view/default/Index/index.html | 22 +++--- code/app/home/view/default/baseH5.html | 56 ++++++++------- .../view/kuangyu/推广SEO过程设计记录/index.md | 1 + code/database/seeders/TemplateSeeder.php | 2 +- 6 files changed, 94 insertions(+), 60 deletions(-) diff --git a/code/app/home/BaseController.php b/code/app/home/BaseController.php index 756b29d..5af00ac 100644 --- a/code/app/home/BaseController.php +++ b/code/app/home/BaseController.php @@ -103,6 +103,7 @@ abstract class BaseController View::assign("DomainModel", $this->request->DomainModel); View::assign("TemplatesModel", $this->request->TemplatesModel); + View::assign("strPcPath", $strPcUrlTemp); View::assign("strNanUrlTemp", $strNanUrlTemp); View::assign("strNvUrlTemp", $strNvUrlTemp); diff --git a/code/app/home/controller/Index.php b/code/app/home/controller/Index.php index f058201..910ba42 100644 --- a/code/app/home/controller/Index.php +++ b/code/app/home/controller/Index.php @@ -28,29 +28,50 @@ class Index extends BaseController $NovelModel = NovelModel::getInstance(); + $strTemplatesModel = $Request->TemplatesModel->t_code; + + switch ($strTemplatesModel) { + case 'default': + // 默认模板 630zw + // TODO default模板h5 首页数据: 获取所有分类数据,然后 每个分类 随机获取 10个小说 ,所有分类数据 放到一个数组里, 前端一个循环渲染,排版都是一样的 + $arrNovelCategory = []; + + View::assign([ + 'arrNovelCategory' => $arrNovelCategory, + ]); + break; + case 'kuangYu': + $strKey = sprintf('%s:H5:INDEX:ZUIJIAN:SEX:%s:%s', $Request->DomainModel->d_domain, 0, 8); + $arrNewsNovel = $NovelModel->getCommonNovelOnCache($strKey, $intTTL, 8, 0, NULL, ['og_novel_update_time' => -1]); + + $strKey = sprintf('%s:H5:INDEX:RANK:%s:SEX:%s', $Request->DomainModel->d_domain, 'daily', 0); + $arrDayRankNovel = $NovelModel->getRankNovelOnCache($strKey, 10, 0, 'daily'); + + $strKey = sprintf('%s:H5:INDEX:RANK:%s:SEX:%s', $Request->DomainModel->d_domain, 'weekly', 0); + $arrWeekRankNovel = $NovelModel->getRankNovelOnCache($strKey, 10, 0, 'weekly'); + + $strKey = sprintf('%s:H5:INDEX:RANK:%s:SEX:%s', $Request->DomainModel->d_domain, 'monthly', 0); + $arrMoonRankNovel = $NovelModel->getRankNovelOnCache($strKey, 10, 0, 'monthly'); + + $strStatus = '已完结'; + $strKey = sprintf('%s:H5:INDEX:RANK:%s:%s', $Request->DomainModel->d_domain, 'total', 'finished'); + $arrEndNovelRankNovel = $NovelModel->getRankNovelOnCache($strKey, 10, 0, 'total', $strStatus); + + View::assign([ + 'arrNewsNovel' => $arrNewsNovel, + 'arrDayRankNovel' => $arrDayRankNovel, + 'arrWeekRankNovel' => $arrWeekRankNovel, + 'arrMoonRankNovel' => $arrMoonRankNovel, + 'arrEndNovelRankNovel' => $arrEndNovelRankNovel, + 'strPageCode' => 'home', + ]); + break; + } + // 推荐等级为9的连载的 随机15个小说 - $strKey = sprintf('%s:H5:INDEX:TUIJIAN:%s', $Request->DomainModel->d_domain, 8); - $arrRecommendNovel = $NovelModel->getCommonNovelOnCache($strKey, $intTTL, 8); - $strKey = sprintf('%s:H5:INDEX:ZUIJIAN:SEX:%s:%s', $Request->DomainModel->d_domain, 0, 8); - $arrNewsNovel = $NovelModel->getCommonNovelOnCache($strKey, $intTTL, 8, 0, NULL, ['og_novel_update_time' => -1]); - - $strKey = sprintf('%s:H5:INDEX:RANK:%s:SEX:%s', $Request->DomainModel->d_domain, 'daily', 0); - $arrDayRankNovel = $NovelModel->getRankNovelOnCache($strKey, 10, 0, 'daily'); - - $strKey = sprintf('%s:H5:INDEX:RANK:%s:SEX:%s', $Request->DomainModel->d_domain, 'weekly', 0); - $arrWeekRankNovel = $NovelModel->getRankNovelOnCache($strKey, 10, 0, 'weekly'); - - $strKey = sprintf('%s:H5:INDEX:RANK:%s:SEX:%s', $Request->DomainModel->d_domain, 'monthly', 0); - $arrMoonRankNovel = $NovelModel->getRankNovelOnCache($strKey, 10, 0, 'monthly'); - - $strStatus = '已完结'; - $strKey = sprintf('%s:H5:INDEX:RANK:%s:%s', $Request->DomainModel->d_domain, 'total', 'finished'); - $arrEndNovelRankNovel = $NovelModel->getRankNovelOnCache($strKey, 10, 0, 'total', $strStatus); - - // Title 模板 ConverterMovel::setVal([ 'strIndexTitle' => $this->request->DomainModel->d_index_title, @@ -74,11 +95,11 @@ class Index extends BaseController View::assign([ 'arrRecommendNovel' => $arrRecommendNovel, - 'arrNewsNovel' => $arrNewsNovel, - 'arrDayRankNovel' => $arrDayRankNovel, - 'arrWeekRankNovel' => $arrWeekRankNovel, - 'arrMoonRankNovel' => $arrMoonRankNovel, - 'arrEndNovelRankNovel' => $arrEndNovelRankNovel, + // 'arrNewsNovel' => $arrNewsNovel, + // 'arrDayRankNovel' => $arrDayRankNovel, + // 'arrWeekRankNovel' => $arrWeekRankNovel, + // 'arrMoonRankNovel' => $arrMoonRankNovel, + // 'arrEndNovelRankNovel' => $arrEndNovelRankNovel, 'strPageCode' => 'home', 'strTitle' => $strTitle, 'strKeywords' => $strKeywords, @@ -86,6 +107,7 @@ class Index extends BaseController 'strHostNovelDescription' => $strHostNovelDescription, 'strNewsNovelDescription' => $strNewsNovelDescription, 'strRankNovelDescription' => $strRankNovelDescription, + // 'arrNovelCategory' => $arrNovelCategory, ]); $strView = $boolIsMobile ? '' : 'pc/index'; @@ -111,7 +133,7 @@ class Index extends BaseController $strKey = sprintf('%s:PC:INDEX:TUIJIAN:%s', $Request->DomainModel->d_domain, 13); $arrRecommendSerializationNovel = $NovelModel->getCommonNovelOnCache($strKey, $intTTL, 13, 0, NULL); - + // 推荐等级为9的完结的 随机12个小说 $strKey = sprintf('%s:PC:INDEX:TUIJIAN:WANJIE:%s', $Request->DomainModel->d_domain, 12); $arrRecommendEndNovel = $NovelModel->getCommonNovelOnCache($strKey, $intTTL, 12, 0, "已完结"); diff --git a/code/app/home/view/default/Index/index.html b/code/app/home/view/default/Index/index.html index 0294544..12d6a61 100644 --- a/code/app/home/view/default/Index/index.html +++ b/code/app/home/view/default/Index/index.html @@ -13,23 +13,27 @@

封面推荐

- {foreach $arrRecommendNovel as $key=>$vo } + {foreach $arrRecommendNovel as $key=>$Novel }
-
{$vo.xsxq_ming_zi}
+
+ + {$Novel.og_novel_book_name ?? ''} - {$Novel.og_novel_category ?? ''}最新章节在线免费阅读 + +
-

{$vo.xsxq_ming_zi}

-

作者:{$vo.xsxq_zuozhe}

-

{$vo.xsxq_jie_shao}

+

{$Novel.og_novel_book_name}

+

作者:{$Novel.og_novel_author}

+

{$Novel.og_description}

{/foreach}
- {$strGanRaoMa|raw} +
-{foreach $arrXiaoShuoFenLei as $category} +{foreach $arrNovelCategory as $category}

@@ -62,7 +66,7 @@

{/foreach} -{$strGanRaoMa|raw} + {/block} {block name="customize"} diff --git a/code/app/home/view/default/baseH5.html b/code/app/home/view/default/baseH5.html index 58b6447..64e913f 100644 --- a/code/app/home/view/default/baseH5.html +++ b/code/app/home/view/default/baseH5.html @@ -3,23 +3,31 @@ + + + - - - - + - - + + {block name="title"}{/block} + + - + {block name="meta-other"}{/block} + + {block name="head"}{/block} + {block name="head-css"}{/block} {block name="head-js"}{/block} + @@ -32,20 +40,17 @@
@@ -53,8 +58,8 @@ {block name="main"} {/block} @@ -63,21 +68,18 @@

最新标签

{foreach $arrRecommendNovel as $key=>$vo } - {$vo.nis_name}   + {$vo.og_novel_book_name}   {/foreach} - {ad:list code="YOUQING_LIANJIE_GUANG_GAO" order="desc" limit="2" id="ad"} - {$ad.gg_wen_zi}   - {/ad:list} XML地图  

反馈邮箱: - {site:site valcode="site_email" encode="false"/} Inc. All Rights Reserved.

+ {site:cfg code="YOU_XIANG" encode="false"/} Inc. All Rights Reserved.

diff --git a/code/app/home/view/kuangYu/pc/getNovelChannel.html b/code/app/home/view/kuangYu/pc/getNovelChannel.html index a488f8f..8441805 100644 --- a/code/app/home/view/kuangYu/pc/getNovelChannel.html +++ b/code/app/home/view/kuangYu/pc/getNovelChannel.html @@ -76,13 +76,13 @@
{volist name="arrAdBanner" id="Ad" key="key"} - {include file="Pc/Public/adBanner" /} + {include file="pc/public/adBanner" /} {/volist}
@@ -96,14 +96,14 @@
{volist name="arrAdBanner" id="Ad" key="key"} - {include file="Pc/Public/adBanner" /} + {include file="pc/public/adBanner" /} {/volist}
@@ -126,7 +126,7 @@ {volist name="arrNewsUpdateNovel" id="Novel" key="key"} - {include file="Pc/Public/indexNewsUpdateList" start="21"/} + {include file="pc/public/indexNewsUpdateList" start="21"/} {/volist} diff --git a/code/app/home/view/kuangYu/pc/getNovelChapter.html b/code/app/home/view/kuangYu/pc/getNovelChapter.html index 95aba6e..cf066f3 100644 --- a/code/app/home/view/kuangYu/pc/getNovelChapter.html +++ b/code/app/home/view/kuangYu/pc/getNovelChapter.html @@ -66,6 +66,9 @@ } } + @@ -141,7 +144,7 @@
  • - + 123456
    {volist name="arrAdBanner" id="Ad" key="key"} - {include file="Pc/Public/adBanner" /} + {include file="pc/public/adBanner" /} {/volist}
    @@ -118,14 +118,14 @@ {volist name="arrBoyNewsNovel" id="Novel" key="key"} {if $key == 1} - {include file="Pc/Public/indexBoyNewsOne" start="25" /} + {include file="pc/public/indexBoyNewsOne" start="25" /} {/if} {/volist}
      {volist name="arrBoyNewsNovel" id="Novel" key="key"} {if $key >= 2} - {include file="Pc/Public/indexBoyNewsList" start="26" /} + {include file="pc/public/indexBoyNewsList" start="26" /} {/if} {/volist}
    @@ -141,10 +141,10 @@
      {foreach $arrBoyWeekRankNovel as $key=>$Novel} {if $key == 1} - {include file="Pc/Public/indexBoyRankOne" start="30"/} + {include file="pc/public/indexBoyRankOne" start="30"/} {/if} {if $key >= 2} - {include file="Pc/Public/indexBoyRankList" start="31"/} + {include file="pc/public/indexBoyRankList" start="31"/} {/if} {/foreach}
    @@ -154,10 +154,10 @@
      {foreach $arrBoyMoonRankNovel as $key=>$Novel} {if $key == 1} - {include file="Pc/Public/indexBoyRankOne" start="41"/} + {include file="pc/public/indexBoyRankOne" start="41"/} {/if} {if $key >= 2} - {include file="Pc/Public/indexBoyRankList" start="42"/} + {include file="pc/public/indexBoyRankList" start="42"/} {/if} {/foreach}
    @@ -167,10 +167,10 @@
      {foreach $arrBoyTotalRankNovel as $key=>$Novel} {if $key == 1} - {include file="Pc/Public/indexBoyRankOne" start="53"/} + {include file="pc/public/indexBoyRankOne" start="53"/} {/if} {if $key >= 2} - {include file="Pc/Public/indexBoyRankList" start="54"/} + {include file="pc/public/indexBoyRankList" start="54"/} {/if} {/foreach}
    @@ -181,7 +181,7 @@
    {volist name="arrAdBanner" id="Ad" key="key"} - {include file="Pc/Public/adBanner" /} + {include file="pc/public/adBanner" /} {/volist}
    @@ -193,14 +193,14 @@
    {volist name="arrGirlNewsNovel" id="Novel" key="key"} {if $key == 1} - {include file="Pc/Public/indexBoyNewsOne" start="55"/} + {include file="pc/public/indexBoyNewsOne" start="55"/} {/if} {/volist}
      {volist name="arrGirlNewsNovel" id="Novel" key="key"} {if $key >= 2} - {include file="Pc/Public/indexBoyNewsList" start="56"/} + {include file="pc/public/indexBoyNewsList" start="56"/} {/if} {/volist}
    @@ -216,10 +216,10 @@
      {volist name="arrGirlWeekRankNovel" id="Novel" key="key"} {if $key == 1} - {include file="Pc/Public/indexBoyRankOne" start="59"/} + {include file="pc/public/indexBoyRankOne" start="59"/} {/if} {if $key >= 2} - {include file="Pc/Public/indexBoyRankList" start="60"/} + {include file="pc/public/indexBoyRankList" start="60"/} {/if} {/volist}
    @@ -229,10 +229,10 @@
      {volist name="arrGirlMoonRankNovel" id="Novel" key="key"} {if $key == 1} - {include file="Pc/Public/indexBoyRankOne" start="71"/} + {include file="pc/public/indexBoyRankOne" start="71"/} {/if} {if $key >= 2} - {include file="Pc/Public/indexBoyRankList" start="72" /} + {include file="pc/public/indexBoyRankList" start="72" /} {/if} {/volist}
    @@ -242,10 +242,10 @@
      {volist name="arrBGirlTotalRankNovel" id="Novel" key="key"} {if $key == 1} - {include file="Pc/Public/indexBoyRankOne" start="83"/} + {include file="pc/public/indexBoyRankOne" start="83"/} {/if} {if $key >= 2} - {include file="Pc/Public/indexBoyRankList" start="84"/} + {include file="pc/public/indexBoyRankList" start="84"/} {/if} {/volist}
    @@ -256,7 +256,7 @@
    {volist name="arrAdBanner" id="Ad" key="key"} - {include file="Pc/Public/adBanner" /} + {include file="pc/public/adBanner" /} {/volist}
    @@ -279,7 +279,7 @@
  • {volist name="arrNewsUpdateNovel" id="Novel" key="key"} - {include file="Pc/Public/indexNewsUpdateList" start="95"/} + {include file="pc/public/indexNewsUpdateList" start="95"/} {/volist} From 788d857607409a39cca7c8c9b7c71a863e5b49b5 Mon Sep 17 00:00:00 2001 From: make Date: Mon, 14 Apr 2025 14:45:51 +0800 Subject: [PATCH 6/9] debug --- code/app/home/view/kuangYu/pc/{Public => public}/adBanner.html | 0 .../home/view/kuangYu/pc/{Public => public}/allChapterPage.html | 0 code/app/home/view/kuangYu/pc/{Public => public}/articleList.html | 0 .../app/home/view/kuangYu/pc/{Public => public}/endNovelList.html | 0 code/app/home/view/kuangYu/pc/{Public => public}/footer.html | 0 code/app/home/view/kuangYu/pc/{Public => public}/hostListImg.html | 0 .../app/home/view/kuangYu/pc/{Public => public}/hostListText.html | 0 .../home/view/kuangYu/pc/{Public => public}/indexBoyNewsList.html | 0 .../home/view/kuangYu/pc/{Public => public}/indexBoyNewsOne.html | 0 .../home/view/kuangYu/pc/{Public => public}/indexBoyRankList.html | 0 .../home/view/kuangYu/pc/{Public => public}/indexBoyRankOne.html | 0 .../view/kuangYu/pc/{Public => public}/indexNewsUpdateList.html | 0 .../home/view/kuangYu/pc/{Public => public}/shukuNovelList.html | 0 .../home/view/kuangYu/pc/{Public => public}/swiperListImg.html | 0 .../home/view/kuangYu/pc/{Public => public}/swiperListText.html | 0 code/app/home/view/kuangYu/pc/{User => user}/getBookShelf.html | 0 code/app/home/view/kuangYu/pc/{User => user}/getHistory.html | 0 code/app/home/view/kuangYu/pc/{User => user}/index.html | 0 18 files changed, 0 insertions(+), 0 deletions(-) rename code/app/home/view/kuangYu/pc/{Public => public}/adBanner.html (100%) rename code/app/home/view/kuangYu/pc/{Public => public}/allChapterPage.html (100%) rename code/app/home/view/kuangYu/pc/{Public => public}/articleList.html (100%) rename code/app/home/view/kuangYu/pc/{Public => public}/endNovelList.html (100%) rename code/app/home/view/kuangYu/pc/{Public => public}/footer.html (100%) rename code/app/home/view/kuangYu/pc/{Public => public}/hostListImg.html (100%) rename code/app/home/view/kuangYu/pc/{Public => public}/hostListText.html (100%) rename code/app/home/view/kuangYu/pc/{Public => public}/indexBoyNewsList.html (100%) rename code/app/home/view/kuangYu/pc/{Public => public}/indexBoyNewsOne.html (100%) rename code/app/home/view/kuangYu/pc/{Public => public}/indexBoyRankList.html (100%) rename code/app/home/view/kuangYu/pc/{Public => public}/indexBoyRankOne.html (100%) rename code/app/home/view/kuangYu/pc/{Public => public}/indexNewsUpdateList.html (100%) rename code/app/home/view/kuangYu/pc/{Public => public}/shukuNovelList.html (100%) rename code/app/home/view/kuangYu/pc/{Public => public}/swiperListImg.html (100%) rename code/app/home/view/kuangYu/pc/{Public => public}/swiperListText.html (100%) rename code/app/home/view/kuangYu/pc/{User => user}/getBookShelf.html (100%) rename code/app/home/view/kuangYu/pc/{User => user}/getHistory.html (100%) rename code/app/home/view/kuangYu/pc/{User => user}/index.html (100%) diff --git a/code/app/home/view/kuangYu/pc/Public/adBanner.html b/code/app/home/view/kuangYu/pc/public/adBanner.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/adBanner.html rename to code/app/home/view/kuangYu/pc/public/adBanner.html diff --git a/code/app/home/view/kuangYu/pc/Public/allChapterPage.html b/code/app/home/view/kuangYu/pc/public/allChapterPage.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/allChapterPage.html rename to code/app/home/view/kuangYu/pc/public/allChapterPage.html diff --git a/code/app/home/view/kuangYu/pc/Public/articleList.html b/code/app/home/view/kuangYu/pc/public/articleList.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/articleList.html rename to code/app/home/view/kuangYu/pc/public/articleList.html diff --git a/code/app/home/view/kuangYu/pc/Public/endNovelList.html b/code/app/home/view/kuangYu/pc/public/endNovelList.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/endNovelList.html rename to code/app/home/view/kuangYu/pc/public/endNovelList.html diff --git a/code/app/home/view/kuangYu/pc/Public/footer.html b/code/app/home/view/kuangYu/pc/public/footer.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/footer.html rename to code/app/home/view/kuangYu/pc/public/footer.html diff --git a/code/app/home/view/kuangYu/pc/Public/hostListImg.html b/code/app/home/view/kuangYu/pc/public/hostListImg.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/hostListImg.html rename to code/app/home/view/kuangYu/pc/public/hostListImg.html diff --git a/code/app/home/view/kuangYu/pc/Public/hostListText.html b/code/app/home/view/kuangYu/pc/public/hostListText.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/hostListText.html rename to code/app/home/view/kuangYu/pc/public/hostListText.html diff --git a/code/app/home/view/kuangYu/pc/Public/indexBoyNewsList.html b/code/app/home/view/kuangYu/pc/public/indexBoyNewsList.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/indexBoyNewsList.html rename to code/app/home/view/kuangYu/pc/public/indexBoyNewsList.html diff --git a/code/app/home/view/kuangYu/pc/Public/indexBoyNewsOne.html b/code/app/home/view/kuangYu/pc/public/indexBoyNewsOne.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/indexBoyNewsOne.html rename to code/app/home/view/kuangYu/pc/public/indexBoyNewsOne.html diff --git a/code/app/home/view/kuangYu/pc/Public/indexBoyRankList.html b/code/app/home/view/kuangYu/pc/public/indexBoyRankList.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/indexBoyRankList.html rename to code/app/home/view/kuangYu/pc/public/indexBoyRankList.html diff --git a/code/app/home/view/kuangYu/pc/Public/indexBoyRankOne.html b/code/app/home/view/kuangYu/pc/public/indexBoyRankOne.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/indexBoyRankOne.html rename to code/app/home/view/kuangYu/pc/public/indexBoyRankOne.html diff --git a/code/app/home/view/kuangYu/pc/Public/indexNewsUpdateList.html b/code/app/home/view/kuangYu/pc/public/indexNewsUpdateList.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/indexNewsUpdateList.html rename to code/app/home/view/kuangYu/pc/public/indexNewsUpdateList.html diff --git a/code/app/home/view/kuangYu/pc/Public/shukuNovelList.html b/code/app/home/view/kuangYu/pc/public/shukuNovelList.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/shukuNovelList.html rename to code/app/home/view/kuangYu/pc/public/shukuNovelList.html diff --git a/code/app/home/view/kuangYu/pc/Public/swiperListImg.html b/code/app/home/view/kuangYu/pc/public/swiperListImg.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/swiperListImg.html rename to code/app/home/view/kuangYu/pc/public/swiperListImg.html diff --git a/code/app/home/view/kuangYu/pc/Public/swiperListText.html b/code/app/home/view/kuangYu/pc/public/swiperListText.html similarity index 100% rename from code/app/home/view/kuangYu/pc/Public/swiperListText.html rename to code/app/home/view/kuangYu/pc/public/swiperListText.html diff --git a/code/app/home/view/kuangYu/pc/User/getBookShelf.html b/code/app/home/view/kuangYu/pc/user/getBookShelf.html similarity index 100% rename from code/app/home/view/kuangYu/pc/User/getBookShelf.html rename to code/app/home/view/kuangYu/pc/user/getBookShelf.html diff --git a/code/app/home/view/kuangYu/pc/User/getHistory.html b/code/app/home/view/kuangYu/pc/user/getHistory.html similarity index 100% rename from code/app/home/view/kuangYu/pc/User/getHistory.html rename to code/app/home/view/kuangYu/pc/user/getHistory.html diff --git a/code/app/home/view/kuangYu/pc/User/index.html b/code/app/home/view/kuangYu/pc/user/index.html similarity index 100% rename from code/app/home/view/kuangYu/pc/User/index.html rename to code/app/home/view/kuangYu/pc/user/index.html From 64dd3e4994e6648e10d0b0c12e645c71c4ee0077 Mon Sep 17 00:00:00 2001 From: make Date: Mon, 14 Apr 2025 14:57:32 +0800 Subject: [PATCH 7/9] debug --- code/app/home/view/kuangYu/novel/getNovelCatalog.html | 1 + code/app/home/view/kuangYu/novel/getNovelChapter.html | 1 + code/app/home/view/kuangYu/novel/getNovelInfo.html | 1 + code/app/home/view/kuangYu/pc/getKanNovelInfo.html | 2 ++ code/app/home/view/kuangYu/pc/getNovelCatalog.html | 1 + code/app/home/view/kuangYu/pc/getNovelInfo.html | 1 + code/app/home/view/kuangYu/pc/public/indexBoyNewsList.html | 3 ++- code/app/home/view/kuangYu/pc/public/indexNewsUpdateList.html | 1 + 8 files changed, 10 insertions(+), 1 deletion(-) diff --git a/code/app/home/view/kuangYu/novel/getNovelCatalog.html b/code/app/home/view/kuangYu/novel/getNovelCatalog.html index b7ddbb4..0d49627 100644 --- a/code/app/home/view/kuangYu/novel/getNovelCatalog.html +++ b/code/app/home/view/kuangYu/novel/getNovelCatalog.html @@ -72,6 +72,7 @@