You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
31 lines
1.0 KiB
{layout name="public/layout" /}
|
|
<div class="weui-panel">
|
|
<div class="weui-panel__hd">
|
|
<p>活动报名</p>
|
|
</div>
|
|
<div class="weui-panel__bd">
|
|
<div class="weui-media-box weui-media-box_text">
|
|
<table id="mytg" class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" width="20px">#</th>
|
|
<th scope="col">活动名称</th>
|
|
<th scope="col">申请时间</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach name="lists" item="vo" key="k"}
|
|
<tr>
|
|
<td>{$k+1}</td>
|
|
<td>{$vo.title}</td>
|
|
<td>{$vo.create_time|date='Y-m-d',###}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
<tfoot>
|
|
<div class="list-page" align="center">{$page}</div>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|