12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <{include file="admin/header.html"}>
- <{include file="admin/nav.html"}>
- <div class="container">
- <table class="table">
- <tr>
- <td>活动名称:</td>
- <td><{$eventsAndPrizeData.events.events_name}></td>
- </tr>
-
- </table>
- <table class="table table-condensed table-hover">
- <tr>
- <th>字母名称</th>
- <th>库存总数</th>
- <th>已发放数量</th>
- <th>剩余数量</th>
- <th>(当天)下次中奖时间</th>
- <th>操作</th>
- </tr>
- <{foreach from=$lettersData item=data}>
- <tr>
- <td><{$data.ABC_name}></td>
- <td><{$data.num}></td>
- <td><{$data.winning_num}></td>
- <td><{$data.num-$data.winning_num}></td>
- <td><{if $data.next_time }><{"Y-m-d H:i:s"|date:$data.next_time}><{/if}></td>
- <td>
- <a href="<{$web_cfg.domain}>/?c=admin_Lottery&a=UpLettersDataPage&id=<{$data.id}>" target="_blank">[修改]</a>
- </td>
- </tr>
- <{/foreach}>
- <tr>
- <td colspan='7' class=' page'><{$page_html}></td>
- </tr>
- </table>
- </div>
- <script type="text/javascript">
- KISSY.use("node, io, json,jquery", function(S, Node, IO, JSON, jQuery){
-
- $('#ti_sut').click(function(){
-
- });
- });
- </script>
- <{include file="admin/bottom.html"}>
|