Nessuna descrizione
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.

goods_list.htm 7.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. {include file="public/layout" /}
  2. <body style="background-color: rgb(255, 255, 255); overflow: auto; cursor: default; -moz-user-select: inherit;min-width:400px;">
  3. <div id="append_parent"></div>
  4. <div id="ajaxwaitid"></div>
  5. <div class="page" style="box-shadow:none;min-width: 400px;">
  6. <div class="flexigrid">
  7. <div class="mDiv">
  8. <div class="ftitle">
  9. <h3>商品列表</h3>
  10. <h5>(共{$pager->totalRows}条数据)</h5>
  11. </div>
  12. <div title="刷新数据" class="pReload"><i class="fa fa-refresh"></i></div>
  13. <form class="navbar-form form-inline" id="searchForm" action="{:url('Discount/goods_list')}" method="get" onsubmit="layer_loading('正在处理');">
  14. {$searchform.hidden|default=''}
  15. <div class="sDiv">
  16. <div class="sDiv2">
  17. <select name="typeid" class="select" style="margin:0px 5px;">
  18. <option value="0">--选择栏目--</option>
  19. {$arctype_html}
  20. </select>
  21. </div>
  22. <div class="sDiv2">
  23. <input type="hidden" name="channel" id="channel" value="{$Request.param.channel|default=''}">
  24. <input type="text" size="30" name="keywords" value="{$Request.param.keywords}" class="qsbox" placeholder="标题搜索...">
  25. <input type="submit" class="btn" value="搜索">
  26. <i class="iconfont e-sousuo"></i>
  27. </div>
  28. </div>
  29. </form>
  30. </div>
  31. <div class="hDiv">
  32. <div class="hDivBox">
  33. <table cellspacing="0" cellpadding="0" style="width: 100%">
  34. <thead>
  35. <tr>
  36. <th class="sign w40" axis="col0">
  37. <div class="tc"><input type="checkbox" autocomplete="off" class="checkAll"></div>
  38. </th>
  39. <th abbr="article_title" axis="col3" class="w50">
  40. <div class="tc">ID</div>
  41. </th>
  42. <th align="center" abbr="article_title" axis="col3" class="w60">
  43. <div class="tc">封面图</div>
  44. </th>
  45. <th align="left" abbr="article_title" axis="col3" class="">
  46. <div style="text-align: left; padding-left: 10px;" class="">商品标题</div>
  47. </th>
  48. <th abbr="article_time" axis="col6" class="w100">
  49. <div class="tc">商品库存总量</div>
  50. </th>
  51. <th abbr="article_time" axis="col6" class="w100">
  52. <div class="tc">更新时间</div>
  53. </th>
  54. </tr>
  55. </thead>
  56. </table>
  57. </div>
  58. </div>
  59. <div class="bDiv" style="height: auto;">
  60. <div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
  61. <table style="width: 100%;">
  62. <tbody>
  63. {empty name="list"}
  64. <tr>
  65. <td class="no-data" align="center" axis="col0" colspan="50">
  66. <div class="no_row">
  67. <div class="no_pic"><img src="__SKIN__/images/null-data.png"></div>
  68. </div>
  69. </td>
  70. </tr>
  71. {else/}
  72. {foreach name="list" item="vo" key="k" }
  73. <tr>
  74. <td class="sign">
  75. <div class="tc w40">
  76. <input type="checkbox" autocomplete="off" name="infos[]" value='{$vo.json_encode_params}'>
  77. </div>
  78. </td>
  79. <td class="sort">
  80. <div class="tc w50">
  81. {$vo.sharp_goods_id}
  82. </div>
  83. </td>
  84. <td class="w60">
  85. <div class="tc">
  86. <img src="{$vo.litpic|get_default_pic=###}" width="60" height="60">
  87. </div>
  88. </td>
  89. <td class="" style="width: 100%;">
  90. <div class="tl" style="padding-left: 10px;">
  91. <div class="title">
  92. {$vo.title}
  93. </div>
  94. </div>
  95. </td>
  96. <td class="">
  97. <div class="w100 tc">
  98. {$vo.discount_stock}
  99. </div>
  100. </td>
  101. <td>
  102. <div class="w100 tc">
  103. {$vo.update_time|date='Y-m-d',###}
  104. </div>
  105. </td>
  106. </tr>
  107. {/foreach}
  108. {/empty}
  109. </tbody>
  110. </table>
  111. </div>
  112. <div class="iDiv" style="display: none;"></div>
  113. </div>
  114. <div class="tDiv">
  115. <div class="tDiv2">
  116. <div class="fbutton checkboxall">
  117. <input type="checkbox" autocomplete="off" class="checkAll">
  118. </div>
  119. <div class="fbutton">
  120. <a onclick="confirm_choose();" class="layui-btn layui-btn-primary">
  121. <span>确定</span>
  122. </a>
  123. </div>
  124. {include file="public/page" /}
  125. </div>
  126. <div style="clear:both"></div>
  127. </div>
  128. </div>
  129. </div>
  130. <script type="text/javascript">
  131. $(function(){
  132. $('input[name*=ids]').click(function(){
  133. if ($('input[name*=ids]').length == $('input[name*=ids]:checked').length) {
  134. $('.checkAll').prop('checked','checked');
  135. } else {
  136. $('.checkAll').prop('checked', false);
  137. }
  138. });
  139. $('input[type=checkbox].checkAll').click(function(){
  140. $('input[type=checkbox]').prop('checked',this.checked);
  141. });
  142. });
  143. function confirm_choose(){
  144. var infos = [];
  145. $('input[name^=infos]').each(function(){
  146. if($(this).is(':checked')){
  147. infos.push($(this).val());
  148. }
  149. })
  150. if(infos.length == 0){
  151. showErrorAlert('请至少选择一项!');
  152. return;
  153. }
  154. window.parent.reback(infos)
  155. }
  156. $(document).ready(function(){
  157. // 表格行点击选中切换
  158. $('#flexigrid > table>tbody >tr').click(function(){
  159. $(this).toggleClass('trSelected');
  160. });
  161. // 点击刷新数据
  162. $('.fa-refresh').click(function(){
  163. location.href = location.href;
  164. });
  165. $('#searchForm select[name=typeid]').change(function(){
  166. $('#searchForm').submit();
  167. });
  168. });
  169. /**
  170. * 获取已选择的数据
  171. * @returns {Array}
  172. */
  173. function getSelectedData() {
  174. var data = [];
  175. $('input[name^=ids]').each(function(i,o){
  176. if($(o).is(':checked')){
  177. var params = $('#ids_' + $(o).val()).val();
  178. params = $.parseJSON(params);
  179. data.push(params);
  180. }
  181. })
  182. if(data.length == 0){
  183. showErrorAlert('请至少选择一项!');
  184. return;
  185. }
  186. return data;
  187. }
  188. </script>
  189. {include file="public/footer" /}