goods_collect.html
5.57 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!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/index.css" type="text/css">
<link rel="stylesheet" href="__STATIC__/css/page.css" type="text/css">
<script src="__STATIC__/js/jquery-1.10.2.min.js"></script>
<script src="__STATIC__/js/slider.js"></script>
</head>
<body>
<!--------头部开始-------------->
<include file="public/header" />
<!--------头部结束-------------->
<div class="layout ov-hi">
<div class="breadcrumb-area">
<foreach name="navigate_user" key="k" item="v">
<if condition="$k neq '首页'"> > </if>
<a href="{$v}">{$k}</a>
</foreach>
</div>
</div>
<div class="layout pa-to-10 fo-fa-ar">
<!--菜单-->
<include file="user/menu" />
<!--菜单-->
<div class="fr wi940">
<div class="he50 wddd">
<div class="fl ddd-h2">
<h2><span>我的收藏</span></h2>
</div>
</div>
<div class="wddd-js ov-in">
<!--<div class="merge">-->
<!--<label class="ma-ri-20 di-in-bl cu-po" for="checkallbox"><input class="ma-ri-10 ve-al-mi" id="checkallbox" type="checkbox"><span class="ve-al-mi fo-si-14 fo-fa-ta">全选</span></label>-->
<!--<a class="jrgwcv vam fo-fa-ta co-28c0c6" href="">加入购物车</a>-->
<!--<span class="vam fo-fa-ta"> | </span>-->
<!--<a class="jrgwcv vam fo-fa-ta co-28c0c6" href="">取消关注</a>-->
<!--</div>-->
<div class="flool-b layer wi940">
<ul class="flool-cle">
<if condition="empty($lists)"><!--没查询到数据-->
<p style="text-align:center"><img src="__STATIC__/images/null_data.jpg" width="400" /></p>
</if>
<volist name="lists" id="list">
<li class="sellers sellers-two wi25-BFB">
<div class="best-two ma0-20-20-0">
<div class="he364 about-ced best-tans">
<div class="best_img best_img2 best_img3">
<a href=""><img src="{$list.original_img}" /></a>
</div>
<div class="intr-t intr-t3 pa0-20">{$list.goods_name}<span class="intr-b"></span></div>
<div class="price prices">
<span>¥</span><em>{$list.shop_price}</em>
</div>
<div class="add-join">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" class="joins-ri"><a href="{:U('Home/Goods/goodsInfo',array('id'=>$list['goods_id']))}">去购买</a></td>
<td align="center" class="joins-le"><a href="{:U('Home/User/del_goods_collect',array('id'=>$list['collect_id']))}">取消</a></td>
</tr>
</table>
</div>
<!--<div class="tag">-->
<!--<img src="__STATIC__/images/1382593860805.png" alt="首发" />-->
<!--</div>-->
</div>
</div>
</li>
</volist>
</ul>
</div>
<!--<div class="merge fl">-->
<!--<label class="ma-ri-20 di-in-bl cu-po" for="checkallbox"><input class="ma-ri-10 ve-al-mi" id="checkallbox" type="checkbox"><span class="ve-al-mi fo-si-14 fo-fa-ta">全选</span></label>-->
<!--<a class="jrgwcv vam fo-fa-ta co-28c0c6" href="">加入购物车</a>-->
<!--<span class="vam fo-fa-ta"> | </span>-->
<!--<a class="jrgwcv vam fo-fa-ta co-28c0c6" href="">取消关注</a>-->
<!--</div>-->
<div class="merge pager-paging fr">
{$page}
</div>
</div>
</div>
</div>
<div class="he80"></div>
<!--------footer-开始-------------->
<include file="public/footer2" />
<!--------footer-结束-------------->
</body>
<script>
/*$(function () {
$("#h-s").click(function () {
$('.ec-ta-x').css('left','124px');
$('.ec-ta-x').css('width','110px');
$(this).addClass("cullent");
$('#q-s').removeClass("cullent");
});
});
*/
</script>
<script>
$(function () {
$("#h-s").mouseover(function () {
$('.ec-ta-x').css('left','124px');
$('.ec-ta-x').css('width','110px');
$(this).addClass("cullent");
});
$("#h-s").mouseout(function () {
$('.ec-ta-x').css('left','0px');
$('.ec-ta-x').css('width','124px');
$(this).removeClass("cullent");
});
});
$(function () {
$("#q-s").mouseover(function () {
$('.ec-ta-x').css('left','0px');
$(this).addClass("cullent");
});
$("#q-s").mouseout(function () {
$('.ec-ta-x').css('left','0px');
});
});
</script>
</html>