novel-view

This commit is contained in:
make
2025-03-28 20:14:11 +08:00
parent 28b7343b51
commit 217d32aca9
2 changed files with 4 additions and 4 deletions

View File

@@ -23,7 +23,7 @@ d_content_title d_content_keywords d_content_description
章节/内容页面路由目录 d_content_path
排行榜路由目录 d_rank_path
推荐页面路由目录 d_recommend_path
kan页面路由目录 d_kan_path
kan页面路由目录 d_kan_path
文章页面路由目录 d_article_path
4.这个是为了做某个视频或者某个小说关键词排名设计的

View File

@@ -43,11 +43,11 @@ class TemplateSeeder
];
foreach ($arrData as $arrSystemConfig) {
$TemplatesModel = TemplatesModel::where('t_id', $arrSystemConfig['t_id'])->find();
foreach ($arrData as $arrTemplate) {
$TemplatesModel = TemplatesModel::where('t_id', $arrTemplate['t_id'])->find();
if (empty($TemplatesModel)) {
TemplatesModel::insert($arrSystemConfig);
TemplatesModel::insert($arrTemplate);
}
}