event_letters_data.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <{include file="admin/header.html"}>
  2. <{include file="admin/nav.html"}>
  3. <div class="container">
  4. <table class="table">
  5. <tr>
  6. <td>活动名称:</td>
  7. <td><{$eventsAndPrizeData.events.events_name}></td>
  8. </tr>
  9. </table>
  10. <table class="table table-condensed table-hover">
  11. <tr>
  12. <th>字母名称</th>
  13. <th>库存总数</th>
  14. <th>已发放数量</th>
  15. <th>剩余数量</th>
  16. <th>(当天)下次中奖时间</th>
  17. <th>操作</th>
  18. </tr>
  19. <{foreach from=$lettersData item=data}>
  20. <tr>
  21. <td><{$data.ABC_name}></td>
  22. <td><{$data.num}></td>
  23. <td><{$data.winning_num}></td>
  24. <td><{$data.num-$data.winning_num}></td>
  25. <td><{if $data.next_time }><{"Y-m-d H:i:s"|date:$data.next_time}><{/if}></td>
  26. <td>
  27. <a href="<{$web_cfg.domain}>/?c=admin_Lottery&a=UpLettersDataPage&id=<{$data.id}>" target="_blank">[修改]</a>
  28. </td>
  29. </tr>
  30. <{/foreach}>
  31. <tr>
  32. <td colspan='7' class=' page'><{$page_html}></td>
  33. </tr>
  34. </table>
  35. </div>
  36. <script type="text/javascript">
  37. KISSY.use("node, io, json,jquery", function(S, Node, IO, JSON, jQuery){
  38. $('#ti_sut').click(function(){
  39. });
  40. });
  41. </script>
  42. <{include file="admin/bottom.html"}>