currency.phtml
2.14 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
{{> layout/header}}
<div class="me-currency-page me-page yoho-page clearfix">
{{# meCurrency}}
{{> home/path}}
{{> home/navigation}}
<div class="me-main">
<div class="currencies block">
<h2 class="title"></h2>
<h1 class="my-currency">目前可用YOHO币:<em>{{myCurrency}}</em>个</h1>
<div class="tab-wrap">
{{> home/tabs}}
<div class="options-helper">
<select class="filter-select">
{{# options}}
<option value="{{url}}">{{name}}</option>
{{/ options}}
</select>
<a class="coin-helper" href="{{coinHelperUrl}}">[ 什么是YOHO币?]</a>
</div>
</div>
<p class="currency-header clearfix">
<span class="date">日期</span>
<span class="income-expenditure">收入/支出</span>
<span class="remark">详细说明</span>
</p>
<ul class="currency">
{{# currency}}
<li>
<span class="date">{{date}}</span>
<span class="income-expenditure{{#if isIncome}} income{{/if}}">
{{#if isIncome}}
+
{{^}}
-
{{/if}}
{{value}}
</span>
<p class="remark">
{{desc}}
{{#if detailUrl}}
<a href="{{detailUrl}}">查看详情</a>
{{/if}}
</p>
</li>
{{/ currency}}
</ul>
{{> home/pager}}
</div>
{{> home/help-us}}
</div>
{{/ meCurrency}}
</div>