Brak opisu
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.

order_express.htm 8.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. {include file="public/layout" /}
  2. <body class="bodystyle" style="cursor: default; -moz-user-select: inherit; min-width: auto;">
  3. <div id="append_parent"></div>
  4. <div id="ajaxwaitid"></div>
  5. <div class="page ad" style="min-width: auto;">
  6. <div class="flexigrid">
  7. <div class="mDiv">
  8. <div class="ftitle">
  9. <h3>快递列表</h3>
  10. {eq name="$select" value="1"}
  11. <h5>(共 {$pageObj->totalRows} 个快递公司,已选中 {$selectNum} 个快递公司)</h5>
  12. {else/}
  13. <h5>(共{$pageObj->totalRows}条数据)</h5>
  14. {/eq}
  15. </div>
  16. <div title="刷新数据" class="pReload"><i class="fa fa-refresh"></i></div>
  17. <form class="navbar-form form-inline" action="{:url('Shop/order_express')}" method="get" onsubmit="layer_loading('正在处理');">
  18. {$searchform.hidden|default=''}
  19. <div class="sDiv">
  20. <div class="sDiv2">
  21. <input type="text" size="30" name="keywords" value="{$Request.param.keywords}" class="qsbox" placeholder="名称搜索...">
  22. <input type="submit" class="btn" value="搜索">
  23. <i class="iconfont e-sousuo"></i>
  24. </div>
  25. </div>
  26. </form>
  27. </div>
  28. <div class="hDiv">
  29. <div class="hDivBox">
  30. <table cellspacing="0" cellpadding="0" style="width: 100%">
  31. <thead>
  32. <tr>
  33. <th axis="col1" class="w10">
  34. <div class="tc"></div>
  35. </th>
  36. <th abbr="article_title" axis="col3" class="">
  37. <div class="">
  38. 快递名称 &nbsp; &nbsp; &nbsp;
  39. {eq name="$select" value="1"}
  40. <a href="JavaScript:void(0);" onclick="allSelect(1);">[全部选中]</a> &nbsp; &nbsp; &nbsp;
  41. <a href="JavaScript:void(0);" onclick="allSelect(0);">[全部取消]</a> &nbsp; &nbsp; &nbsp;
  42. {/eq}
  43. </div>
  44. </th>
  45. <th abbr="article_time" axis="col6" class="w150">
  46. <div class="tc">快递标识</div>
  47. </th>
  48. {eq name="$select" value="1"}
  49. <th axis="col1" class="w80">
  50. <div class="tc">选中</div>
  51. </th>
  52. {else/}
  53. <th axis="col1" class="w80">
  54. <div class="tc">操作</div>
  55. </th>
  56. {/eq}
  57. <th axis="col1" class="w80">
  58. <div class="tc">排序</div>
  59. </th>
  60. </tr>
  61. </thead>
  62. </table>
  63. </div>
  64. </div>
  65. <div class="bDiv" style="height: auto;">
  66. <div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
  67. <table style="width: 100%;">
  68. <tbody>
  69. {empty name="ExpressData"}
  70. <tr>
  71. <td class="no-data" align="center" axis="col0" colspan="50">
  72. <div class="no_row">
  73. <div class="no_pic"><img src="__SKIN__/images/null-data.png"></div>
  74. </div>
  75. </td>
  76. </tr>
  77. {else/}
  78. {foreach name="ExpressData" item="vo" key="k" }
  79. <tr>
  80. <td class="">
  81. <div class="w10 tc"></div>
  82. </td>
  83. <td style="width: 100%;">
  84. <div class="">{$vo.express_name}</div>
  85. </td>
  86. <td class="">
  87. <div class="w150 tc">{$vo.express_code}</div>
  88. </td>
  89. {eq name="$select" value="1"}
  90. <td>
  91. <div class="w80 tc">
  92. {if condition="$vo['is_choose'] eq 1"}
  93. <span class="yes" onClick="changeTableVal('shop_express', 'express_id', '{$vo.express_id}', 'is_choose', this);"><i class="fa fa-check-circle"></i>是</span>
  94. {else /}
  95. <span class="no" onClick="changeTableVal('shop_express', 'express_id', '{$vo.express_id}', 'is_choose', this);"><i class="fa fa-ban"></i>否</span>
  96. {/if}
  97. </div>
  98. </td>
  99. {else/}
  100. <td>
  101. <div class="w80 tc">
  102. <input type="hidden" id="express_name_{$vo.express_id}" value="{$vo.express_name}" />
  103. <input type="hidden" id="express_code_{$vo.express_id}" value="{$vo.express_code}" />
  104. <a class="btn blue" href="javascript:void(0);" onClick="parent.express(this, {$vo.express_id});"><i class="fa fa-location-arrow"></i>选择</a>
  105. </div>
  106. </td>
  107. {/eq}
  108. <td>
  109. <div class="w80 tc">
  110. <input class="tc" type="text" onkeyup="this.value=this.value.replace(/[^\d]/g,'');" onpaste="this.value=this.value.replace(/[^\d]/g,'')" onchange="changeTableVal('shop_express','express_id','{$vo.express_id}','sort_order',this);" size="4" value="{$vo.sort_order}" />
  111. </div>
  112. </td>
  113. </tr>
  114. {/foreach}
  115. {/empty}
  116. </tbody>
  117. </table>
  118. </div>
  119. <div class="iDiv" style="display: none;"></div>
  120. </div>
  121. <!--分页位置-->
  122. {$pageStr}
  123. </div>
  124. </div>
  125. <script type="text/javascript">
  126. $(document).ready(function(){
  127. // 表格行点击选中切换
  128. $('#flexigrid > table>tbody >tr').click(function(){
  129. $(this).toggleClass('trSelected');
  130. });
  131. // 点击刷新数据
  132. $('.fa-refresh').click(function(){
  133. location.href = location.href;
  134. });
  135. });
  136. // 全部选中/全部取消
  137. function allSelect(is_choose) {
  138. var selectNum = "{$selectNum}";
  139. var totalRows = "{$pageObj->totalRows}";
  140. var msg = '';
  141. if (1 == is_choose) {
  142. if (selectNum == totalRows) {
  143. layer.msg('已全部选中,无需重复操作', {time: 2000});
  144. return false;
  145. }
  146. msg = '执行此操作则将 <span style="color: red;">' + totalRows + '</span> 个快递公司全部选中,是否确认?';
  147. } else {
  148. if (selectNum == 0) {
  149. layer.msg('已全部取消,无需重复操作', {time: 2000});
  150. return false;
  151. }
  152. msg = '执行此操作则将 <span style="color: red;">' + totalRows + '</span> 个快递公司全部取消选中,是否确认?';
  153. }
  154. layer.confirm(msg, {
  155. shade: layer_shade,
  156. area: ['480px', '190px'],
  157. move: false,
  158. title: '提示',
  159. btnAlign:'r',
  160. closeBtn: 3,
  161. btn: ['确定', '取消'] ,//按钮
  162. success: function () {
  163. $(".layui-layer-content").css('text-align', 'left');
  164. }
  165. },function(){
  166. layer_loading('正在处理');
  167. $.ajax({
  168. url: "{:url('Shop/express_is_choose')}",
  169. data: {is_choose: is_choose, _ajax: 1},
  170. type:'post',
  171. dataType:'json',
  172. success:function(res) {
  173. layer.closeAll();
  174. if (1 == res.code) {
  175. layer.msg(res.msg, {time: 1500}, function() {
  176. window.location.reload();
  177. });
  178. } else {
  179. layer.msg(res.msg, {time: 1500});
  180. }
  181. }
  182. });
  183. });
  184. }
  185. </script>
  186. {include file="public/footer" /}