gpttemp
This commit is contained in:
14
code/app/home/view/videoGpt1/module/ranking/ranking_01.html
Normal file
14
code/app/home/view/videoGpt1/module/ranking/ranking_01.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<section class="{$TpStyle.dom_prefix}-r1-wrap">
|
||||
<h3 class="{$TpStyle.dom_prefix}-r1-title">排行榜</h3>
|
||||
|
||||
<ol class="{$TpStyle.dom_prefix}-r1-list">
|
||||
{volist name="arrVideoPiaofang" id="vo" offset="0" length="10"}
|
||||
<li class="{$TpStyle.dom_prefix}-r1-row">
|
||||
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-r1-a">
|
||||
{// <span class="{$TpStyle.dom_prefix}-r1-num">{$i}</span> }
|
||||
<span class="{$TpStyle.dom_prefix}-r1-name">{$vo.v_name}</span>
|
||||
</a>
|
||||
</li>
|
||||
{/volist}
|
||||
</ol>
|
||||
</section>
|
||||
18
code/app/home/view/videoGpt1/module/ranking/ranking_02.html
Normal file
18
code/app/home/view/videoGpt1/module/ranking/ranking_02.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<article class="{$TpStyle.dom_prefix}-r2-block">
|
||||
<header class="{$TpStyle.dom_prefix}-r2-hd">热播榜</header>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-r2-list">
|
||||
{volist name="arrVideoPiaofang" id="vo" offset="0" length="6"}
|
||||
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-r2-item">
|
||||
<img loading="lazy"
|
||||
src="{site:cfg code='PUBLIC_COVER_DOMAIN' encode='false'/}{$vo.v_pic}"
|
||||
class="{$TpStyle.dom_prefix}-r2-img"
|
||||
alt="{$vo.v_name}">
|
||||
<div class="{$TpStyle.dom_prefix}-r2-info">
|
||||
<h4>{$vo.v_name}</h4>
|
||||
<p>热度上升中 → 点击查看</p>
|
||||
</div>
|
||||
</a>
|
||||
{/volist}
|
||||
</div>
|
||||
</article>
|
||||
15
code/app/home/view/videoGpt1/module/ranking/ranking_03.html
Normal file
15
code/app/home/view/videoGpt1/module/ranking/ranking_03.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<section class="{$TpStyle.dom_prefix}-r3-area">
|
||||
<h3 class="{$TpStyle.dom_prefix}-r3-tt">趋势排行 TOP10</h3>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-r3-rows">
|
||||
{volist name="arrVideoPiaofang" id="vo" offset="0" length="10"}
|
||||
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-r3-row">
|
||||
<span class="{$TpStyle.dom_prefix}-r3-l">{$i}</span>
|
||||
<div class="{$TpStyle.dom_prefix}-r3-m">
|
||||
{$vo.v_name}
|
||||
</div>
|
||||
<span class="{$TpStyle.dom_prefix}-r3-r">★</span>
|
||||
</a>
|
||||
{/volist}
|
||||
</div>
|
||||
</section>
|
||||
15
code/app/home/view/videoGpt1/module/ranking/ranking_04.html
Normal file
15
code/app/home/view/videoGpt1/module/ranking/ranking_04.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<div class="{$TpStyle.dom_prefix}-r4-sec">
|
||||
<h3 class="{$TpStyle.dom_prefix}-r4-hd">人气榜单</h3>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-r4-grid">
|
||||
{volist name="arrVideoPiaofang" id="vo" offset="0" length="6"}
|
||||
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-r4-card">
|
||||
<img loading="lazy"
|
||||
src="{site:cfg code='PUBLIC_COVER_DOMAIN' encode='false'/}{$vo.v_pic}"
|
||||
class="{$TpStyle.dom_prefix}-r4-img"
|
||||
alt="{$vo.v_name}">
|
||||
<p class="{$TpStyle.dom_prefix}-r4-name">{$i}. {$vo.v_name}</p>
|
||||
</a>
|
||||
{/volist}
|
||||
</div>
|
||||
</div>
|
||||
17
code/app/home/view/videoGpt1/module/ranking/ranking_05.html
Normal file
17
code/app/home/view/videoGpt1/module/ranking/ranking_05.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<article class="{$TpStyle.dom_prefix}-r5-wrap">
|
||||
<header class="{$TpStyle.dom_prefix}-r5-top">
|
||||
<strong>飙升榜</strong>
|
||||
</header>
|
||||
|
||||
<div class="{$TpStyle.dom_prefix}-r5-body">
|
||||
{volist name="arrVideoPiaofang" id="vo" offset="0" length="8"}
|
||||
<a href="/detail/{$vo.v_id}.html" class="{$TpStyle.dom_prefix}-r5-line">
|
||||
<div class="{$TpStyle.dom_prefix}-r5-left">#{$i}</div>
|
||||
<div class="{$TpStyle.dom_prefix}-r5-right">
|
||||
<b>{$vo.v_name}</b>
|
||||
<p>热度提升中</p>
|
||||
</div>
|
||||
</a>
|
||||
{/volist}
|
||||
</div>
|
||||
</article>
|
||||
Reference in New Issue
Block a user