booth_quota.html 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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_promotion_booth}</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('Promotionbooth/booth_quota')}" class="btn btn-default" title="{$Think.lang.ds_cancel}">{$Think.lang.ds_cancel}</a>
  21. </div>
  22. </div>
  23. </form>
  24. <!-- 帮助 -->
  25. <div class="explanation" id="explanation">
  26. <div class="title" id="checkZoom">
  27. <h4 title="{$Think.lang.ds_explanation_tip}">{$Think.lang.ds_explanation}</h4>
  28. <span id="explanationZoom" title="{$Think.lang.ds_explanation_close}" class="arrow"></span>
  29. </div>
  30. <ul>
  31. <li>{$Think.lang.booth_quota_help1}</li>
  32. </ul>
  33. </div>
  34. <!-- 列表 -->
  35. <form id="list_form" method="post">
  36. <input type="hidden" id="object_id" name="object_id" />
  37. <table class="ds-default-table">
  38. <thead>
  39. <tr class="thead">
  40. <th>{$Think.lang.ds_store_name}</th>
  41. <th class="align-center">{$Think.lang.ds_begin_time}</th>
  42. <th class="align-center">{$Think.lang.ds_end_time}</th>
  43. <th class="align-center">{$Think.lang.ds_status}</th>
  44. <th class="align-center">{$Think.lang.ds_handle}</th>
  45. </tr>
  46. </thead>
  47. <tbody id="treet1">
  48. {notempty name="booth_list"}
  49. {foreach name="booth_list" item="val"}
  50. <tr class="hover">
  51. <td class="align-left"><a href="{:url('home/Store/index',['store_id'=>$val.store_id])}" ><span>{$val.store_name}</span></a></td>
  52. <td class="align-center">{$val.boothquota_starttime|date="Y-m-d"}</td>
  53. <td class="align-center">{$val.boothquota_endtime|date="Y-m-d"}</td>
  54. <td class="align-center">
  55. {$state_array[$val.boothquota_state]}
  56. </td>
  57. <td class="align-center"><a href="{:url('Promotionbooth/index',['store_id'=>$val.store_id])}" class="dsui-btn-view"><i class="iconfont"></i>{$Think.lang.ds_view}</a></td>
  58. </tr>
  59. {/foreach}
  60. {else /}
  61. <tr class="no_data">
  62. <td colspan="16">{$Think.lang.ds_no_record}</td>
  63. </tr>
  64. {/notempty}
  65. </tbody>
  66. </table>
  67. {$show_page|raw}
  68. </form>
  69. </div>