12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <{include file="./admin/header.html"}>
- <{include file="./admin/left.html"}>
- <{include file="./admin/nav.html"}>
- <{include file="get_kindeditor.html"}>
- <style>
- .set-nav {
- margin: 0 auto;
- }
- .set-nav-hr {
- background-color: #ddd;
- height: 1px;
- position: relative;
- }
- .form-group label {
- font-weight: 600;
- }
- .checkbox-inline, .radio-inline {
- font-weight: 400!important;
- }
- .rowlabel {
- font-weight: 300!important;
- }
- .music_play_hide {
- display:none;
- }
- </style>
- <div id="activity_container">
- <form id="activity_form">
- <div class="activity_center">
- <{include file="./admin/activity/common_nav.html"}>
- <input name="events_id" type="hidden" value="<{$events_Data.events.id}>">
-
- <div class="panel panel-default">
- <div class="panel-body">
- <table class="table">
- <thead>
- <tr>
- <th>序号</th>
- <th>是否领取 / UID</th>
- <th>券码</th>
- <th>创建时间</th>
- </tr>
- </thead>
- <tbody>
- <{if !$codeData}>
- <tr>
- <td colspan="4" align="center"> 没有查询到券信息 </td>
- </tr>
- <{else}>
- <{assign var=start_index value=$page*$size}>
- <{foreach from=$codeData item=item name=code}>
- <tr>
- <{assign var=index value=$start_index+$smarty.foreach.code.iteration}>
- <td><{$index}></td>
- <td><{if !$item.uid}><span class="text-muted">未领取</span><{else}><span class="text-success">已领取</span> / <span class="text-warning"><{$item.uid}></span><{/if}></td>
- <td><{$item.data}></td>
- <td><{$item.create_time|date_format:'%Y-%m-%d %H:%M:%S'}></td>
- </tr>
- <{/foreach}>
- <{/if}>
- </tbody>
- <tfoot>
- <tr>
- <td colspan="6" class="page"><{$page_html}></td>
- </tr>
- </tfoot>
- </table>
- </div>
- </div>
-
- </div>
- <{include file="./admin/activity/common_right.html"}>
- <div style="clear:both;"></div>
- </form>
- </div>
- <script>
- KISSY.use('node, io, event, jquery', function (S, Node, IO, Event, jQuery) {
- var $ = S.all;
- });
- </script>
- <{include file="./admin/bottom.html"}>
|