截流自动化的商城平台
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.html 8.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. {layout name="layout1" /}
  2. <div class="wrapper">
  3. <div class="layui-card">
  4. <div class="layui-card-body">
  5. <div class="layui-collapse like-layui-collapse" lay-accordion="" style="border:1px dashed #c4c4c4">
  6. <div class="layui-colla-item">
  7. <h2 class="layui-colla-title like-layui-colla-title" style="background-color: #fff">操作提示</h2>
  8. <div class="layui-colla-content layui-show">
  9. <p>*设置快递配送的运费模板。</p>
  10. <p>*需要开启快递发货的配送方式,运费模板才能生效。</p>
  11. </div>
  12. </div>
  13. </div>
  14. </div>
  15. <div class="layui-tab layui-tab-card" lay-filter="tab-all">
  16. <ul class="layui-tab-title">
  17. <li data-type='freight' class="layui-this">运费模板</li>
  18. </ul>
  19. <div class="layui-tab-content">
  20. <!--运费模板列表-->
  21. <div class="layui-tab-item layui-show ">
  22. {include file="freight/lists"/}
  23. </div>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. <script>
  29. layui.config({
  30. version:"{$front_version}",
  31. base: '/static/lib/'
  32. }).extend({
  33. likeedit: 'likeedit/likeedit'
  34. }).use(['table', 'form', 'element', 'likeedit'], function() {
  35. var form = layui.form
  36. ,$ = layui.$
  37. ,table = layui.table
  38. , element = layui.element
  39. , likeedit = layui.likeedit;
  40. //图片放大
  41. $(document).on('click', '.image-show', function () {
  42. var src = $(this).attr('src');
  43. like.showImg(src,600);
  44. });
  45. getLists('freight');
  46. //切换列表
  47. element.on('tab(tab-all)', function (data) {
  48. form.render('select');
  49. var type = $(this).attr('data-type');
  50. getLists(type);
  51. });
  52. form.on('submit(freight-search)', function (data) {
  53. var field = data.field;
  54. //执行重载
  55. table.reload('freight-lists', {
  56. where: field
  57. });
  58. });
  59. form.on('submit(freight-clear-search)', function () {
  60. $('#name').val('');
  61. $('#charge_way').val('');
  62. form.render('select');
  63. //刷新列表
  64. table.reload('freight-lists', {
  65. where: []
  66. });
  67. });
  68. function getLists(type) {
  69. if (type == 'freight') {
  70. like.tableLists('#freight-lists', '{:url("freight/lists")}', [
  71. {field: 'name',width:100, title: '模板名称'}
  72. ,{field: 'charge_way_text', width:120,title: '计费方式'}
  73. ,{field: 'remark', title: '备注'}
  74. ,{field: 'create_time', title: '创建时间'}
  75. ,{fixed: 'right', title: '操作',width:160, align: 'center', fixed: 'right', toolbar: '#freight-operation'}
  76. ]);
  77. }
  78. }
  79. //新增运费模板
  80. var active = {
  81. add: function(){
  82. layer.open({
  83. type: 2
  84. ,title: '添加运费模板'
  85. ,content: '{:url("freight/add")}'
  86. ,area: ['90%','90%']
  87. ,btn: ['确定', '取消']
  88. ,yes: function(index, layero){
  89. var iframeWindow = window['layui-layer-iframe'+ index]
  90. ,submitID = 'add-freight-submit'
  91. ,submit = layero.find('iframe').contents().find('#'+ submitID);
  92. //监听提交
  93. iframeWindow.layui.form.on('submit('+ submitID +')', function(data){
  94. var field = data.field;
  95. like.ajax({
  96. url:'{:url("freight/add")}',
  97. data:field,
  98. type:"post",
  99. success:function(res)
  100. {
  101. if(res.code == 1)
  102. {
  103. layui.layer.msg(res.msg, {
  104. offset: '15px'
  105. , icon: 1
  106. , time: 1000
  107. });
  108. layer.close(index); //关闭弹层
  109. table.reload('freight-lists'); //数据刷新
  110. }
  111. }
  112. });
  113. });
  114. submit.trigger('click');
  115. }
  116. });
  117. }
  118. };
  119. $('.layui-btn.layuiadmin-btn-freight').on('click', function(){
  120. var type = $(this).data('type');
  121. active[type] ? active[type].call(this) : '';
  122. });
  123. //运费模板监听工具条
  124. table.on('tool(freight-lists)', function (obj) {
  125. var id = obj.data.id;
  126. //详情
  127. if(obj.event === 'detail-freight'){
  128. layer.open({
  129. type: 2
  130. ,title: '详情'
  131. ,content: '{:url("freight/detail")}?id='+id
  132. ,area: ['90%', '90%']
  133. ,yes: function(index, layero){
  134. table.reload('freight-lists'); //再执行关闭
  135. }
  136. })
  137. }
  138. //编辑
  139. if(obj.event === 'edit-freight'){
  140. layer.open({
  141. type: 2
  142. ,title: '编辑'
  143. ,btn: ['确定', '取消']
  144. ,content: '{:url("freight/edit")}?id='+id
  145. ,area: ['90%', '90%']
  146. ,yes: function(index, layero){
  147. var iframeWindow = window['layui-layer-iframe'+ index]
  148. ,submitID = 'edit-freight-submit'
  149. ,submit = layero.find('iframe').contents().find('#'+ submitID);
  150. //监听提交
  151. iframeWindow.layui.form.on('submit('+ submitID +')', function(data){
  152. var field = data.field;
  153. like.ajax({
  154. url:'{:url("freight/edit")}',
  155. data:field,
  156. type:"post",
  157. success:function(res)
  158. {
  159. if(res.code == 1)
  160. {
  161. layui.layer.msg(res.msg, {
  162. offset: '15px'
  163. , icon: 1
  164. , time: 1000
  165. });
  166. layer.close(index); //关闭弹层
  167. table.reload('freight-lists'); //数据刷新
  168. }
  169. }
  170. });
  171. });
  172. submit.trigger('click');
  173. }
  174. })
  175. }
  176. //删除运费模板
  177. if(obj.event === 'del-freight'){
  178. layer.confirm('删除后运费模板将消失,确认删除运费模板吗?', {
  179. btn: ['确认','取消'] //按钮
  180. }, function(){
  181. like.ajax({
  182. url: '{:url("freight/del")}'
  183. , data: {'id': id}
  184. , type: 'post'
  185. , success: function (res) {
  186. if (res.code == 1) {
  187. layui.layer.msg(res.msg, {
  188. offset: '15px'
  189. , icon: 1
  190. , time: 1000
  191. },function () {
  192. table.reload('freight-lists');
  193. });
  194. }
  195. },
  196. });
  197. });
  198. }
  199. });
  200. });
  201. </script>