index.hbs
3.69 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
<div class="default-me-page me-page yoho-page clearfix">
{{> path}}
{{> navigation}}
{{# me}}
<div class="me-main">
{{# content}}
{{#if messages}}
<p class="message-tip">
消息提示:
{{# messages}}
<a href="{{href}}">{{name}}</a>
<b id="{{id}}">({{count}})</b>
{{/ messages}}
{{#unless @root.pc.user.removeStudentIdentification}}
{{#if certifiedName}}
<a href="{{certifiedUrl}}" target="_blank">{{certifiedName}}</a>
{{/if}}
{{/unless}}
<span id="close-message" class="close iconfont"></span>
</p>
{{/if}}
{{# latestOrders}}
<div class="latest-orders block">
<h2 class="title">
<a class="more-orders more" href="{{more}}">
更多订单
</a>
</h2>
{{!--防诈骗提示--}}
{{> swindle-info}}
{{> home/orders/order-block}}
</div>
{{/ latestOrders}}
<div class="brands block" id="home-brands-box">
</div>
<div class="new-arrival block" id="home-new-box">
</div>
{{/ content}}
</div>
<!--recommend-for-you-->
<div class="recommend block" id="home-recommend-box">
</div>
<!--recommend-for-you-->
<div class="ho-btm">
{{{banner}}}
{{> help-us}}
</div>
{{/ me}}
<script type="text/html" id="home-brands-tpl">
<h2 class="title">
<a class="more-orders more" href="\{{more}}">
更多品牌
</a>
</h2>
<ul class="clearfix">
\{{# brands}}
<li>
<a href="\{{href}}">
<img class="brand-logo" src="\{{logo}}">
<span class="brand-name">\{{name}}</span>
</a>
</li>
\{{/ brands}}
</ul>
</script>
<script type="text/html" id="home-new-tpl">
\{{#if newArrive}}
<h2 class="title">
<p class="na-pager-wrap">
<span class="na-pager pre no-visible">
<i class="iconfont"></i>
</span>
<span class="na-pager next">
<i class="iconfont"></i>
</span>
</p>
</h2>
<ul class="clearfix">
\{{# newArrive}}
<li>
<a href="\{{href}}">
<img class="thumb" src="\{{thumb}}">
<p class="name">\{{name}}</p>
<span class="price">¥\{{price}}</span>
</a>
</li>
\{{/ newArrive}}
</ul>
\{{/if}}
</script>
<script type="text/html" id="home-recommend-tpl">
\{{#if recommend}}
<h2 class="title">
<p class="na-pager-wrap">
<span class="rc-pager pre no-visible">
<i class="iconfont"></i>
</span>
<span class="rc-pager next">
<i class="iconfont"></i>
</span>
</p>
</h2>
<ul class="clearfix">
\{{# recommend}}
<li>
<a href="\{{href}}" data-id='\{{productId}}' target="_blank">
<img class="thumb" src="\{{thumb}}">
<p class="name">\{{name}}</p>
<span class="price">¥\{{price}}</span>
</a>
</li>
\{{/ recommend}}
</ul>
\{{/if}}
</script>
</div>