暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.htm 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. {include file="public/layout" /}
  2. <body style="overflow: auto; cursor: default; -moz-user-select: inherit;background-color:#F4F4F4; padding: 10px 0 10px 10px; ">
  3. <div id="append_parent"></div>
  4. <div id="ajaxwaitid"></div>
  5. {include file="shop/left" /}
  6. <div class="page">
  7. <div class="fixed-bar">
  8. <div class="item-title">
  9. <a class="back_xin" href="{:url('Shop/market_index')}" title="返回"><i class="iconfont e-fanhui"></i></a>
  10. <div class="subject">
  11. <h3>优惠券</h3>
  12. <h5></h5>
  13. </div>
  14. </div>
  15. </div>
  16. <div class="flexigrid">
  17. <!-- 操作说明 -->
  18. <div id="explanation" class="explanation">
  19. <div id="checkZoom" class="title"><i class="fa fa-lightbulb-o"></i>
  20. <h4 title="提示相关设置操作时应注意的要点">提示</h4>
  21. <span title="收起提示" id="explanationZoom" style="display: block;"></span>
  22. </div>
  23. <ul>
  24. <li style="color: red;">注意:该功能仅限于【可视化微信小程序(商城版)】插件</li>
  25. </ul>
  26. </div>
  27. <div class="mDiv">
  28. <div class="ftitle">
  29. {eq name="$Think.const.CONTROLLER_NAME.'@add'|is_check_access" value="1"}
  30. <div class="fbutton" style="float: none;">
  31. <a href="{:url('Coupon/add')}">
  32. <div class="add">
  33. <span><i class="layui-icon layui-icon-addition"></i>新增优惠券</span>
  34. </div>
  35. </a>
  36. </div>
  37. {/eq}
  38. </div>
  39. <form class="navbar-form form-inline" id="searchForm" action="{:url('Coupon/index')}" method="get" onsubmit="layer_loading('正在处理');">
  40. {$searchform.hidden|default=''}
  41. <div class="sDiv">
  42. <div class="sDiv2">
  43. <input type="text" size="30" name="keywords" value="{$Request.param.keywords}" class="qsbox" placeholder="优惠券...">
  44. <input type="submit" class="btn" value="搜索">
  45. <i class="iconfont e-sousuo"></i>
  46. </div>
  47. </div>
  48. </form>
  49. </div>
  50. <div class="hDiv">
  51. <div class="hDivBox">
  52. <table cellspacing="0" cellpadding="0" style="width: 100%">
  53. <thead>
  54. <tr>
  55. <th class="sign w40" axis="col0">
  56. <div class="tc"><input type="checkbox" class="checkAll"></div>
  57. </th>
  58. <th abbr="ac_id" axis="col4">
  59. <div class="text-l10">优惠券名称</div>
  60. </th>
  61. <th abbr="" axis="col6" class="w80">
  62. <div class="tc">优惠券类型</div>
  63. </th>
  64. <th abbr="" axis="col6" class="w150">
  65. <div class="tc">优惠规则</div>
  66. </th>
  67. <th abbr="" axis="col6" class="w100">
  68. <div class="tc">库存数量</div>
  69. </th>
  70. <th abbr="" axis="col6" class="w100">
  71. <div class="tc">已领取数量</div>
  72. </th>
  73. <th abbr="" axis="col6" class="w160">
  74. <div class="tc">有效期</div>
  75. </th>
  76. <th abbr="" axis="col6" class="w60">
  77. <div class="tc">启用</div>
  78. </th>
  79. <th axis="col1" class="w120">
  80. <div class="tc">操作</div>
  81. </th>
  82. <th abbr="article_time" axis="col6" class="w60">
  83. <div class="tc">排序</div>
  84. </th>
  85. </tr>
  86. </thead>
  87. </table>
  88. </div>
  89. </div>
  90. <div class="bDiv" style="height: auto;">
  91. <div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
  92. <table style="width: 100%">
  93. <tbody>
  94. {empty name="list"}
  95. <tr>
  96. <td class="no-data" align="center" axis="col0" colspan="50">
  97. <div class="no_row">
  98. <div class="no_pic"><img src="__SKIN__/images/null-data.png"></div>
  99. </div>
  100. </td>
  101. </tr>
  102. {else/}
  103. {foreach name="list" item="vo" key="k" }
  104. <tr>
  105. <td class="sign">
  106. <div class="w40 tc">
  107. <input type="checkbox" name="ids[]" value="{$vo.coupon_id}">
  108. </div>
  109. </td>
  110. <td style="width: 100%">
  111. <div class="text-l10" style="color: {$vo.coupon_color}">
  112. {$vo.coupon_name}
  113. </div>
  114. </td>
  115. <td>
  116. <div class="w80 tc">
  117. {if condition='1 == $vo.coupon_type'}
  118. 全站通用
  119. {elseif condition='2 == $vo.coupon_type' /}
  120. 指定商品
  121. {elseif condition='3 == $vo.coupon_type' /}
  122. 指定分类
  123. {elseif condition='4 == $vo.coupon_type' /}
  124. 指定分类
  125. {/if}
  126. </div>
  127. </td>
  128. <td>
  129. <div class="w150 tc">
  130. 满{$vo.conditions_use}减{$vo.coupon_price}
  131. </div>
  132. </td>
  133. <td>
  134. <div class="w100 tc">
  135. {$vo.coupon_stock}
  136. </div>
  137. </td>
  138. <td>
  139. <div class="w100 tc">
  140. {$vo.geted|default=0}
  141. </div>
  142. </td>
  143. <td>
  144. <div class="w160 tc">
  145. {$vo.start_date|MyDate='Y-m-d H:i:s',###} 至 <br>{$vo.end_date|MyDate='Y-m-d H:i:s',###}
  146. </div>
  147. </td>
  148. <td>
  149. <div class="w60 tc">
  150. {eq name="$vo['status']" value='1'}
  151. <span class="yes" onclick="changeTableVal('shop_coupon', 'coupon_id', '{$vo.coupon_id}', 'status', this);"> <i class="fa fa-check-circle"></i>是</span>
  152. {else /}
  153. <span class="no" onclick="changeTableVal('shop_coupon', 'coupon_id', '{$vo.coupon_id}', 'status', this);"> <i class="fa fa-ban"></i>否</span>
  154. {/eq}
  155. </div>
  156. </td>
  157. <td class="operation">
  158. <div class="w120 tc">
  159. {eq name="$Think.const.CONTROLLER_NAME.'@edit'|is_check_access" value="1"}
  160. <a href="{:url('Coupon/edit',array('id'=>$vo['coupon_id']))}" class="btn blue">
  161. 编辑
  162. </a>
  163. {/eq}
  164. {eq name="$Think.const.CONTROLLER_NAME.'@del'|is_check_access" value="1"}
  165. <i></i>
  166. <a class="btn red" href="javascript:void(0);" data-url="{:url('Coupon/del')}" data-id="{$vo.coupon_id}" onClick="delfun(this);">
  167. 删除
  168. </a>
  169. {else /}
  170. <i></i>
  171. <a class="btn grey" href="javascript:void(0);" >
  172. 删除
  173. </a>
  174. {/eq}
  175. </div>
  176. </td>
  177. <td class="sort">
  178. <div class="w60 tc">
  179. {eq name="$Think.const.CONTROLLER_NAME.'@edit'|is_check_access" value="1"}
  180. <input type="text" onchange="changeTableVal('shop_coupon', 'coupon_id', '{$vo.coupon_id}', 'sort_order' ,this);" size="4" value="{$vo.sort_order}" />
  181. {else /}
  182. {$vo.sort_order}
  183. {/eq}
  184. </div>
  185. </td>
  186. </tr>
  187. {/foreach}
  188. {/empty}
  189. </tbody>
  190. </table>
  191. </div>
  192. <div class="iDiv" style="display: none;"></div>
  193. </div>
  194. <div class="footer-oper">
  195. <span class="ml15">
  196. <input type="checkbox" class="checkAll">
  197. </span>
  198. {eq name="'Coupon@del'|is_check_access" value="1"}
  199. <a href="javascript:void(0);" onclick="batch_del(this, 'ids');" data-url="{:url('Coupon/del')}" class="layui-btn layui-btn-primary" title="批量删除">批量删除</a>
  200. {/eq}
  201. {include file="public/page" /}
  202. </div>
  203. </div>
  204. </div>
  205. <script type="text/javascript">
  206. try{
  207. if (typeof(eval('is_conceal_1649209614'))=="function" && is_conceal_1649209614()){
  208. $(".page").css("margin-left","");
  209. }else{
  210. $(".page").css("margin-left","100px");
  211. }
  212. }catch(e){}
  213. $(function(){
  214. $('input[name*=ids]').click(function(){
  215. if ($('input[name*=ids]').length == $('input[name*=ids]:checked').length) {
  216. $('.checkAll').prop('checked','checked');
  217. } else {
  218. $('.checkAll').prop('checked', false);
  219. }
  220. });
  221. $('input[type=checkbox].checkAll').click(function(){
  222. $('input[type=checkbox]').prop('checked',this.checked);
  223. });
  224. });
  225. $(document).ready(function() {
  226. // 表格行点击选中切换
  227. $('#flexigrid > table>tbody >tr').click(function() {
  228. $(this).toggleClass('trSelected');
  229. });
  230. // 点击刷新数据
  231. $('.fa-refresh').click(function() {
  232. location.href = location.href;
  233. });
  234. // 批量操作
  235. $(".dropdown-bt").click(function(){
  236. $(".dropdown-menus").slideToggle(200);
  237. event.stopPropagation();
  238. })
  239. $(document).click(function(){
  240. $(".dropdown-menus").slideUp(200);
  241. event.stopPropagation();
  242. })
  243. });
  244. </script>
  245. <script type="text/javascript">
  246. /*模拟下拉选择 select */
  247. $('.cate-select').on('click', '.placeholder', function(e) {
  248. var parent = $(this).closest('.cate-select');
  249. if (!parent.hasClass('is-open')) {
  250. parent.addClass('is-open');
  251. $('.cate-select.is-open').not(parent).removeClass('is-open');
  252. } else {
  253. parent.removeClass('is-open');
  254. }
  255. e.stopPropagation();
  256. }).on('click', 'ul>li', function() {
  257. var parent = $(this).closest('.cate-select');
  258. parent.removeClass('is-open').find('.placeholder').text($(this).text());
  259. });
  260. $('body').on('click', function() {
  261. $('.cate-select.is-open').removeClass('is-open');
  262. });
  263. </script>
  264. {include file="public/footer" /}