sysmsg.html 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. {include file="common/header"/}
  2. <style>
  3. .upload-wrap {
  4. position: relative;
  5. display: inline-block;
  6. overflow: hidden;
  7. border: 1px solid #2d78f4;
  8. border-radius: 3px;
  9. }
  10. .upload-wrap .file-ele {
  11. position: absolute;
  12. top: 0;
  13. right: 0;
  14. opacity: 0;
  15. height: 100%;
  16. width: 100%;
  17. cursor: pointer;
  18. }
  19. .upload-wrap .file-open {
  20. width: 90px;
  21. height: 30px;
  22. line-height: 30px;
  23. text-align: center;
  24. color: #fff;
  25. background: #3385ff;
  26. }
  27. </style>
  28. <div class="LM-container">
  29. <div class="LM-main">
  30. <fieldset class="layui-elem-field layui-field-title">
  31. <legend>系统消息</legend>
  32. <blockquote class="layui-elem-quote">
  33. <div class="LM-table">
  34. <a href="{:url('addmsg')}" class="layui-btn layui-btn-sm layui-btn-warm">添加系统消息</a>
  35. </div>
  36. </blockquote>
  37. </fieldset>
  38. <table class="layui-table" id="list" lay-filter="list">
  39. </table>
  40. </div>
  41. </div>
  42. <script type="text/html" id="is_show">
  43. <input type="checkbox" name="switch" value="{{d.id}}" lay-filter="is_show" lay-skin="switch" lay-text="开启|关闭" {{
  44. d.status== 0 ? 'checked' : '' }}>
  45. </script>
  46. <script type="text/html" id="barDemo">
  47. <input type="button" class="layui-btn layui-btn-xs" lay-event="del" value="删除">
  48. <a href="addmsg?id={{d.id}}" class="layui-btn layui-btn-xs" >编辑</a>
  49. </script>
  50. {include file="common/footer"/}
  51. <script src="/static/plugins/jquery-3.4.1/jquery-3.4.1.min.js"></script>
  52. <script>
  53. layui.use(['form', 'table'], function () {
  54. var $ = layui.jquery,
  55. form = layui.form,
  56. table = layui.table;
  57. var tableIn = table.render({
  58. elem: '#list',
  59. url: '{:url("sysmsg")}',
  60. method: 'post',
  61. title: '反馈意见',
  62. loading: true,
  63. toolbar: '#toolbar', //开启头部工具栏,并为其绑定左侧模板
  64. defaultToolbar: ['filter', 'exports', 'print', "excel", { //自定义头部工具栏右侧图标。如无需自定义,去除该参数即可
  65. title: '提示'
  66. , layEvent: 'LAYTABLE_TIPS'
  67. , icon: 'layui-icon-tips'
  68. }],
  69. cols: [[
  70. // {checkbox: true, fixed: true},
  71. {field: 'id', title: 'ID', width: 80, fixed: true, sort: true},
  72. {field: 'name', title: '标题', width: 200, sort: true},
  73. {field: 'status', title: '是否显示', width: 100, toolbar: "#is_show"},
  74. {field: 'text', title: '说明', width: 500, sort: true},
  75. {title: '操作', width: 150, align: "center", toolbar: "#barDemo"},
  76. ]],
  77. limits: [10, 15, 20, 25, 50, 100],
  78. limit: 10,
  79. page: true
  80. });
  81. table.on('tool(list)', function (obj) {
  82. var data = obj.data;
  83. let event = obj.event;
  84. switch (event) {
  85. case "del":
  86. layer.confirm('确定要删除吗', function (index) {
  87. loading = layer.load(1, {shade: [0.1, '#fff']});
  88. $.post("{:url('del_msg')}", {id: data.id}, function (res) {
  89. layer.close(loading);
  90. layer.close(index);
  91. if (res.code == 200) {
  92. layer.msg(res.msg, {time: 1000, icon: 1});
  93. tableIn.reload();
  94. } else {
  95. layer.msg(res.msg, {time: 1000, icon: 2});
  96. }
  97. }, "json")
  98. })
  99. break;
  100. }
  101. });
  102. // 是否显示
  103. form.on('switch(is_show)', function (obj) {
  104. var id = this.value;
  105. var auth_open = obj.elem.checked === true ? 0 : 1;
  106. let loading = layer.load(1, {shade: [0.1, '#fff']});
  107. $.post("{:url('update_nocice_status')}", {'id': id, 'status': auth_open}, function (res) {
  108. layer.close(loading);
  109. // layer.close(index)
  110. console.log(res)
  111. if (res.code == 200) {
  112. layer.msg(res.msg, {time: 1000, icon: 1});
  113. // tableIn.reload();
  114. } else {
  115. layer.msg(res.msg, {time: 1000, icon: 2});
  116. }
  117. }, "json")
  118. });
  119. $('#search').click(function () {
  120. var $keys = $('#name').val();
  121. if (!$keys) {
  122. return layer.msg('请输入关键词');
  123. }
  124. tableIn.reload({page: {page: 1}, where: {name: $keys}});
  125. })
  126. // setInterval(function () {
  127. // tableIn.reload();
  128. // }, 50000)
  129. });
  130. </script>