detail.html
2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>帮助中心-{$tpshop_config['shop_info_store_title']}</title>
<meta http-equiv="keywords" content="{$tpshop_config['shop_info_store_keyword']}" />
<meta name="description" content="{$tpshop_config['shop_info_store_desc']}" />
<link rel="stylesheet" href="__STATIC__/css/base.css" type="text/css">
<link rel="stylesheet" href="__STATIC__/css/helpcenter.css" type="text/css">
</head>
<body>
<!--------头部开始-------------->
<include file="public/header" />
<div class="w main">
<div class="subside-box">
<div class="subside-in">
<h3 class="h3-title">常见问题分类</h3>
<tpshop sql="select * from `__PREFIX__article_cat` where cat_id in(1,2,3,4,7)" key="k" item='v'>
<dl class="subside-mod on">
<dt class="title">
{$v[cat_name]}<b class="icon02"></b>
</dt>
<dd class="subside-cnt">
<ul class="subside-list" style="padding: 6px 10px 5px 10px;">
<tpshop sql="select * from `__PREFIX__article` where cat_id = $v[cat_id]" key="k2" item='v2'>
<li style="height: 20px;" data-parent-name="购物指南" data-parent-id="21" data-name="交易条款" data-id="28" class="list-item <if condition="$article.article_id eq $v2[article_id]">current</if>">
<a style="white-space: nowrap;text-overflow: ellipsis;overflow: hidden;display: block;" href="{:U('Home/Article/detail',array('article_id'=>$v2[article_id]))}">{$v2[title]}</a>
</li>
</tpshop>
</ul>
</dd>
</dl>
</tpshop>
</div>
</div>
<div class="content">
<div class="breadcrumb">
<span id="sLevel1">帮助中心</span>
>
<a href="#"><span id="sLevel2">{$cat_name}</span></a>
</div>
<div class="contxt">
<div class="help-tit1 flk06">{$article.title}</div>
<div class="help_box" style="margin: 0px; padding: 10px 10px 10px 20px; color: rgb(102, 102, 102); line-height: 18px; font-family: Arial, Verdana, 宋体; font-size: 12px; white-space: normal; background-color: rgb(255, 255, 255);">
<p style="padding: 0px; margin-top: 0px; margin-bottom: 0px;"><br>
{$article.content|htmlspecialchars_decode}
<!--html_entity_decode-->
</p>
</div>
</div>
</div>
<!--------footer-开始-------------->
<include file="public/footer" />
<!--------footer-结束-------------->
</div>
</body>
<script type="text/javascript">
$(function(){
$(".all-selfservice-box .lump-list").hover(function(){$(this).addClass("hover")},function(){$(this).removeClass("hover")})
$(".subside-mod .title").click(
function(){
if($(this).parent(".subside-mod").hasClass("on")){
$(this).parent(".subside-mod").removeClass("on")
}else{
$(this).parent(".subside-mod").addClass("on")
}
});
});
</script>
</html>