mansong_quota.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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_mansong}</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('/Promotionmansong/mansong_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.mansong_quota_list_help1}</li>
  32. </ul>
  33. </div>
  34. <!-- 列表 -->
  35. <form id="list_form" method="post">
  36. <table class="ds-default-table">
  37. <thead>
  38. <tr class="thead">
  39. <th class="w24"></th>
  40. <th class="align-left"><span>{$Think.lang.ds_store_name}</span></th>
  41. <th class="align-center"><span>{$Think.lang.ds_start_time}</span></th>
  42. <th class="align-center"><span>{$Think.lang.ds_end_time}</span></th>
  43. </tr>
  44. </thead>
  45. <tbody id="treet1">
  46. {notempty name="mansongquota_list"}
  47. {foreach name="mansongquota_list" item="val"}
  48. <tr class="hover">
  49. <td></td>
  50. <td class="align-left"><a href="{:url('home/Store/index',['store_id'=>$val.store_id])}" ><span>{$val.store_name}</span></a></td>
  51. <td class="align-center"><span>{$val.mansongquota_starttime|date="Y-m-d"}</span></td>
  52. <td class="align-center"><span>{$val.mansongquota_endtime|date="Y-m-d"}</span></td>
  53. </tr>
  54. {/foreach}
  55. {else /}
  56. <tr class="no_data">
  57. <td colspan="16">{$Think.lang.ds_no_record}</td>
  58. </tr>
  59. {/notempty}
  60. </tbody>
  61. </table>
  62. {$show_page|raw}
  63. </form>
  64. </div>