bargain_quota.html 2.7 KB

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