groupbuy_quota.html 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {include file="public/header" /}
  2. <div class="page">
  3. <div class="fixed-bar">
  4. <div class="item-title">
  5. <div class="subject">
  6. <h3>{$Think.lang.ds_groupbuy}</h3>
  7. <h5></h5>
  8. </div>
  9. {include file="public/admin_items" /}
  10. </div>
  11. </div>
  12. <form method="get" name="formSearch">
  13. <div class="ds-search-form">
  14. <dl>
  15. <dt>{$Think.lang.ds_store_name}</dt>
  16. <dd><input type="text" value="{$Request.get.store_name}" name="store_name" id="store_name" class="txt" style="width:100px;"></dd>
  17. </dl>
  18. <div class="btn_group">
  19. <a href="javascript:document.formSearch.submit();" class="btn " title="{$Think.lang.ds_query}">{$Think.lang.ds_query}</a>
  20. <a href="{:url('Groupbuy/groupbuy_quota')}" class="btn btn-default" title="{$Think.lang.ds_cancel}">{$Think.lang.ds_cancel}</a>
  21. </div>
  22. </div>
  23. </form>
  24. <!-- 帮助 -->
  25. <!-- 列表 -->
  26. <form id="list_form" method="post">
  27. <input type="hidden" id="object_id" name="object_id" />
  28. <table class="ds-default-table">
  29. <thead>
  30. <tr class="thead">
  31. <th class="w24"></th>
  32. <th class="align-left"><span>{$Think.lang.ds_store_name}</span></th>
  33. <th class="align-center"><span>{$Think.lang.ds_start_time}</span></th>
  34. <th class="align-center"><span>{$Think.lang.ds_end_time}</span></th>
  35. </tr>
  36. </thead>
  37. <tbody id="treet1">
  38. {notempty name="groupbuyquota_list"}
  39. {foreach name="groupbuyquota_list" item="val"}
  40. <tr class="hover">
  41. <td></td>
  42. <td class="align-left"><a href="{:url('home/Store/index',['store_id'=>$val.store_id])}<" ><span>{$val.store_name}</span></a></td>
  43. <td class="align-center"><span>{$val.groupbuyquota_starttime|date="Y-m-d"}</span></td>
  44. <td class="align-center"><span>{$val.groupbuyquota_endtime|date="Y-m-d"}</span></td>
  45. </tr>
  46. {/foreach}
  47. {else /}
  48. <tr class="no_data">
  49. <td colspan="16">{$Think.lang.ds_no_record}</td>
  50. </tr>
  51. {/notempty}
  52. </tbody>
  53. {notempty name="groupbuyquota_list"}
  54. <tfoot>
  55. <tr class="tfoot">
  56. <td colspan="16">
  57. {$show_page|raw}
  58. </td>
  59. </tr>
  60. </tfoot>
  61. {/notempty}
  62. </table>
  63. </form>
  64. </div>