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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {layout name="layout1" /}
  2. <div class="wrapper">
  3. <div class="layui-card layui-form">
  4. <div class="layui-card-body">
  5. <div class="layui-collapse like-layui-collapse" 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. </div>
  11. </div>
  12. </div>
  13. </div>
  14. <div class="layui-card-body" id="card-body">
  15. <table id="like-lists" lay-filter="like-lists"></table>
  16. <script type="text/html" id="operation">
  17. <a class="layui-btn layui-btn-normal layui-btn-sm" lay-event="clear">清除系统缓存</a>
  18. </script>
  19. </div>
  20. </div>
  21. </div>
  22. <script>
  23. layui.use(['table', 'form'], function () {
  24. var $ = layui.$
  25. , form = layui.form
  26. , table = layui.table;
  27. table.render({
  28. elem: '#like-lists'
  29. , cols: [[
  30. {field: 'name', title: '管理内容', width: 200}
  31. , {field: 'desc', title: '内容说明', Width: 150}
  32. , {fixed: 'right', title: '操作', width: 200, align: 'center', toolbar: '#operation'}
  33. ]]
  34. , data: [{
  35. "name": "系统缓存"
  36. , "desc": "系统运行过程中产生的各类缓存数据"
  37. }]
  38. });
  39. table.on('tool(like-lists)', function(obj) {
  40. if(obj.event === 'clear') {
  41. like.ajax({
  42. url:'{:url("system.Cache/cache")}',
  43. type:"post",
  44. success:function(res) {
  45. if(res.code === 1) {
  46. layui.layer.msg(res.msg, {
  47. offset: '15px'
  48. , icon: 1
  49. , time: 1000
  50. },function () {
  51. location.reload();
  52. });
  53. }
  54. }
  55. });
  56. }
  57. });
  58. });
  59. </script>