You've already forked qlg.tsgz.moe
addons
app_download_files
extend
hyhproject
admin
app
common
home
home2
behavior
common
conf
controller
model
validate
view
default
articles
articles.js
help.html
news_list.html
news_view.html
css
img
js
shops
sql
users
base.html
base_js.html
box_login.html
brands_list.html
carts.html
error_lost.html
error_msg.html
error_switch.html
error_sys.html
footer.html
forget_pass.html
forget_pass2.html
forget_pass3.html
forget_pass4.html
goods_contrast.html
goods_detail.html
goods_list.html
goods_search.html
header.html
header_lite.html
index.html
invoices.html
order_pay.html
order_pay_step1.html
order_pay_step2.html
order_pay_step3.html
order_pay_wallets.html
order_success.html
regist.html
right_cart.html
self_shop.html
self_shop_header.html
settlement.html
settlement2.html
settlement_quick.html
shop_apply.html
shop_home.html
shop_join.html
shop_join_step1.html
shop_join_step2.html
shop_join_step3.html
shop_join_step35.html
shop_join_step4.html
shop_join_step5.html
shop_join_success.html
shop_login.html
shop_street.html
top.html
user_login.html
user_protocol.html
mobile2
wechat2
.htaccess
command.php
mobile
oss
static
thinkphp
upload
vendor
wxtmp
.gitignore
.htaccess
.user.ini
404.html
H5436787D.wgt
admin.php
app-release.apk
app_download.html
cash.lock
demo.php
get_version.php
get_version_new.php
index.html
index.php
reg.lock
robots.txt
68 lines
2.4 KiB
HTML
Executable File
68 lines
2.4 KiB
HTML
Executable File
{extend name="default/base" /}
|
|
{block name="title"}
|
|
{if isset($content)}
|
|
{if $content.articleTitle!=''}{$content.articleTitle}{else}资讯中心{/if}
|
|
{else}资讯中心{/if} - {:WSTConf('CONF.mallName')}{__block__}{/block}
|
|
{block name="meta"}
|
|
<meta name="keywords" content="{$content.articleKey}" />
|
|
<meta name="description" content="{$content.articleTitle}" />
|
|
{/block}
|
|
{block name="css"}
|
|
<link href="__STYLE__/css/articles.css?v={$v}" rel="stylesheet">
|
|
{/block}
|
|
{block name="main"}
|
|
<div class="bc-nav">
|
|
<p>
|
|
<a href="{:url('/')}">首页</a>
|
|
<a href="{:url('home/news/view')}">> 资讯中心</a>
|
|
{volist name="$bcNav" id="bc"}
|
|
<a href="{:url('home/news/nlist',['catId'=>$bc['catId']])}">> {$bc['catName']}</a>
|
|
{/volist}
|
|
{if isset($content['articleTitle'])}
|
|
<a href="{:url('home/news/view',['id'=>$content['articleId']])}">> 详情</a>
|
|
{/if}
|
|
</p>
|
|
</div>
|
|
<div class="help-box">
|
|
<div class="help-left">
|
|
<p class="h-title b-lg">资讯中心</p>
|
|
<ul id="parent">
|
|
{volist name="$list" id="v" }
|
|
<li class="h-cat h-show">
|
|
<span>{$v['catName']}<p></p></span>
|
|
<ul class="h-list">
|
|
{volist name="$v['children']" id="v1" key="k1"}
|
|
<a href="{:url('home/News/nList',['catId'=>$v1['catId']])}"><li class="{if ($v1['catId']==$catId)}h-curr{/if}">{$v1['catName']}({$v1['newsCount']})</li></a>
|
|
{/volist}
|
|
</ul>
|
|
</li>
|
|
{/volist}
|
|
</ul>
|
|
</div>
|
|
<div class="help-right">
|
|
<div class="h-content">
|
|
{if(!input("param.catId") && !input("param.id"))}
|
|
<div class="head"><p><span>N</span>ews 资讯中心</p><div class='wst-clear'></div></div>
|
|
<ul class="news-list">
|
|
{volist name="$index" id="li"}
|
|
<li><div id="g-square"></div><a href="{:url('home/news/view',['id'=>$li['articleId']])}">{$li['articleTitle']}</a><span class="list-time"> {:date('Y-m-d H:i:s',strtotime($li['createTime']))}</span></li>
|
|
{/volist}
|
|
</ul>
|
|
{/if}
|
|
{if isset($content)}
|
|
<h1>{$content.articleTitle}</h1>
|
|
<div class="cat-time"><span>{$content.catName} </span>发布于:{:date('Y-m-d',strtotime($content.createTime))}</div>
|
|
<div class="n-content">
|
|
{:htmlspecialchars_decode($content.articleContent)}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
<div class='wst-clear'></div>
|
|
</div>
|
|
{/block}
|
|
{block name="js"}
|
|
<script src="__STYLE__/articles/articles.js"></script>
|
|
{/block}
|
|
{block name="footer"}{__block__}
|
|
{/block} |