details.html
5.3 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
<include file="public/layout" />
<script src="__PUBLIC__/static/js/layer/laydate/laydate.js"></script>
<body style="background-color: rgb(255, 255, 255); overflow: auto; cursor: default; -moz-user-select: inherit;">
<div id="append_parent"></div>
<div id="ajaxwaitid"></div>
<div class="page">
<div class="fixed-bar">
<div class="item-title">
<a class="back" href="javascript:window.history.back()" title="返回列表">
<i class="fa fa-arrow-circle-o-left"></i>
</a>
<div class="subject">
<h3>礼包领取详情</h3>
</div>
</div>
</div>
<div class="flexigrid">
<div class="hDiv">
<div class="hDivBox">
<table cellspacing="0" cellpadding="0">
<thead>
<tr>
<if condition="$lbtype eq 1">
<th align="left" abbr="article_time" axis="col6" class="w200">
<div style="text-align: left; " class="">商品名称</div>
</th>
<th align="left" abbr="ac_id" axis="col4" class="w120">
<div style="text-align: left; " class="">商品编号</div>
</th>
<th align="left" abbr="article_time" axis="col6" class="w120">
<div style="text-align: left; " class="">商品数量</div>
</th>
<th align="left" abbr="ac_id" axis="col4" class="w120">
<div style="text-align: left; " class="">已领取数</div>
</th>
<else/>
<if condition="$lbtype eq 2">
<th align="left" abbr="article_time" axis="col6" class="w200">
<div style="text-align: left; " class="">优惠券名称</div>
</th>
<th align="left" abbr="article_time" axis="col6" class="w120">
<div style="text-align: left; " class="">优惠券数量</div>
</th>
<th align="left" abbr="ac_id" axis="col4" class="w120">
<div style="text-align: left; " class="">是否领取</div>
</th>
</if>
</if>
</tr>
</thead>
</table>
</div>
</div>
<div class="tDiv">
<div style="clear:both"></div>
</div>
<div class="bDiv" style="height: auto;">
<div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
<table>
<tbody>
<empty name="list">
<tr>
<td colspan="20" class="norecord">
<div class="warning-option"><i class="icon-warning-sign"></i><span>暂无符合条件的数据记录</span></div>
</td>
</tr>
<else/>
<foreach name="list" item="vo" key="k" >
<tr>
<if condition="$lbtype eq 1">
<td align="left" class="w200">
<div style="text-align: left; ">{$vo.goods_name}</div>
</td>
<td align="left" class="w120">
<div style="text-align: left; ">{$vo.goods_sn}</div>
</td>
<td align="left" class="w120">
<div style="text-align: left; ">{$vo.goods_num}</div>
</td>
<td align="left" class="w120">
<div style="text-align: left; ">{$vo.usenum}</div>
</td>
<else/>
<if condition="$lbtype eq 2">
<td align="left" class="w200">
<div style="text-align: left; ">{$vo.name}</div>
</td>
<td align="left" class="w120">
<div style="text-align: left; ">{$vo.goods_num}</div>
</td>
<td align="left" class="w120">
<div style="text-align: left; "><if condition="$isget">已领取<else/>未领取</if></div>
</td>
</if>
</if>
</tr>
</foreach>
</empty>
</tbody>
</table>
</div>
<div class="iDiv" style="display: none;"></div>
</div>
</div>
</div>
</body>
</html>