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

lists.html 7.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. {layout name="layout1" /}
  2. <div class="wrapper">
  3. <div class="layui-card">
  4. <div class="layui-collapse like-layui-collapse" lay-accordion="" style="border:1px dashed #c4c4c4">
  5. <div class="layui-colla-item">
  6. <h2 class="layui-colla-title like-layui-colla-title" style="background-color: #fff">操作提示</h2>
  7. <div class="layui-colla-content layui-show">
  8. <p>*活动专区能很方便的聚合需要促销的商品,形成各类专题页。</p>
  9. <p>*平台需要先设置好活动专区,商家可以选择需要参与的活动专区。</p>
  10. <p>*删除专区会移除所有参与该专区的商品,请谨慎操作。</p>
  11. </div>
  12. </div>
  13. </div>
  14. <div class="layui-card-body">
  15. <!--添加按钮-->
  16. <div style="padding-bottom: 10px;">
  17. <button class="layui-btn layui-btn-sm layuiadmin-btn-handle {$view_theme_color}" data-type="add">新增专区</button>
  18. </div>
  19. <!--表格-->
  20. <table id="lists" lay-filter="lists"></table>
  21. <script type="text/html" id="lists-operation">
  22. <a class="layui-btn layui-btn-normal layui-btn-xs" lay-event="edit"><i class="layui-icon"></i>编辑</a>
  23. <a class="layui-btn layui-btn-danger layui-btn-xs" lay-event="del"><i class="layui-icon"></i>删除</a>
  24. </script>
  25. </div>
  26. </div>
  27. </div>
  28. <script>
  29. layui.use(['table'], function(){
  30. var form = layui.form
  31. ,table = layui.table;
  32. //监听搜索
  33. form.on('submit(lists-search)', function(data){
  34. var field = data.field;
  35. //执行重载
  36. table.reload('lists', {
  37. where: field
  38. });
  39. });
  40. //事件
  41. var active = {
  42. add: function(){
  43. layer.open({
  44. type: 2
  45. ,title: '新增活动专区'
  46. ,content: '{:url("activity_area.area/add")}'
  47. ,area: ['60%', '60%']
  48. ,btn: ['确定', '取消']
  49. ,yes: function(index, layero){
  50. var iframeWindow = window['layui-layer-iframe'+ index]
  51. ,submitID = 'add-submit'
  52. ,submit = layero.find('iframe').contents().find('#'+ submitID);
  53. //监听提交
  54. iframeWindow.layui.form.on('submit('+ submitID +')', function(data){
  55. var field = data.field;
  56. like.ajax({
  57. url:'{:url("activity_area.area/add")}',
  58. data:field,
  59. type:"post",
  60. success:function(res)
  61. {
  62. if(res.code == 1) {
  63. layui.layer.msg(res.msg, {
  64. offset: '15px'
  65. , icon: 1
  66. , time: 1000
  67. });
  68. layer.close(index);
  69. table.reload('lists');
  70. }
  71. }
  72. });
  73. });
  74. submit.trigger('click');
  75. }
  76. });
  77. }
  78. };
  79. $('.layui-btn.layuiadmin-btn-handle').on('click', function(){
  80. var type = $(this).data('type');
  81. active[type] ? active[type].call(this) : '';
  82. });
  83. like.tableLists('#lists', '{:url("activity_area.area/lists")}', [
  84. {type:'numbers', title: '序号', align: 'center'}
  85. ,{field: 'name', title: '专区名称', align:"center"}
  86. ,{field: 'synopsis', title: '专区简介', align:"center"}
  87. , {field: 'image', title: '专区封面图', align: 'center',sort:false,
  88. templet:function (d) {
  89. return '<div οnclick="photograph(this)"><img src='+d.image+'></div>'
  90. }}
  91. ,{field: 'status', title: '专区状态', align:"center"}
  92. ,{title: '操作', align: 'center', fixed: 'right', toolbar: '#lists-operation'}
  93. ]);
  94. //监听工具条
  95. table.on('tool(lists)', function(obj){
  96. if(obj.event === 'del'){
  97. var id = obj.data.id;
  98. var name = "<span style='color: red;'>"+obj.data.name+"</span>";
  99. layer.confirm('删除活动专区时,专区内的商品将被移除,确定要删除:'+ name +'吗?', function(index){
  100. like.ajax({
  101. url:'{:url("activity_area.area/del")}',
  102. data:{'id':id},
  103. type:"post",
  104. success:function(res)
  105. {
  106. if(res.code == 1) {
  107. obj.del();
  108. layui.layer.msg(res.msg, {
  109. offset: '15px'
  110. , icon: 1
  111. , time: 1000
  112. });
  113. layer.close(index);
  114. }
  115. }
  116. });
  117. });
  118. }else if(obj.event === 'edit'){
  119. var id = obj.data.id;
  120. layer.open({
  121. type: 2
  122. ,title: '编辑活动专区'
  123. ,content: '{:url("activity_area.area/edit")}?id='+id
  124. ,area: ['60%', '60%']
  125. ,btn: ['确定', '取消']
  126. ,yes: function(index, layero){
  127. var iframeWindow = window['layui-layer-iframe'+ index]
  128. ,submitID = 'edit-submit'
  129. ,submit = layero.find('iframe').contents().find('#'+ submitID);
  130. //监听提交
  131. iframeWindow.layui.form.on('submit('+ submitID +')', function(data){
  132. var field = data.field;
  133. like.ajax({
  134. url:'{:url("activity_area.area/edit")}',
  135. data:field,
  136. type:"post",
  137. success:function(res)
  138. {
  139. if(res.code == 1) {
  140. layui.layer.msg(res.msg, {
  141. offset: '15px'
  142. , icon: 1
  143. , time: 1000
  144. });
  145. layer.close(index);
  146. table.reload('lists');
  147. }
  148. }
  149. });
  150. });
  151. submit.trigger('click');
  152. }
  153. })
  154. }
  155. });
  156. });
  157. </script>