price-list.hbs
1.59 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
<p class="market-price">
{{#if marketPrice}}
<br>
<span class="title">吊牌价:</span>
<span class="price{{#if hasOtherPrice}} has-other-price{{/if}}">{{marketPrice}}</span>
{{/if}}
{{#if salePrice}}
<br>
<span>
<span class="title">促销价:</span>
<span class="price">{{salePrice}}</span>
</span>
{{/if}}
{{#if studentsPrice}}
<br>
<p class="students-price">
<span class="title">学生价</span>
<span class="price">{{studentsPrice}}</span>
</p>
{{/if}}
{{#if presalePrice}}
<br>
<span class="presale-price">
<span class="title">预售价:</span>
<span class="price">{{presalePrice}}</span>
<span class="arrival-date">上市期:{{arrivalDate}}</span>
</span>
{{/if}}
{{#if advancePrice}}
<br>
<span class="advance-price">
<span class="title">先行价:</span>
<span class="price">{{advancePrice}}</span>
</span>
{{/if}}
{{#if promotion}}
<span class="promotion">{{promotion}}折</span>
{{/if}}
{{# vipPrice}}
<span class="vip-price">
{{#if unLogin}}
登录后即可查看vip价格
<a class="login-url" href="{{unLogin}}">立即登录</a>
{{/if}}
{{#if normalUser}}
<span class="vip-price-item">您当前是普通会员,成为VIP享受更多优惠!</span>
{{/if}}
{{# prices}}
<span class="vip-level"></span>
<span class="vip-level-{{vipLevel}}"> </span>
<em class="cur"> {{price}} </em>
{{/ prices}}
</span>
{{/ vipPrice}}