pushtitle.js 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. layui.use(['layer', 'table', 'form','upload'], function () {
  2. /*********layui引入参数**********/
  3. var $ = layui.jquery
  4. , layer = layui.layer //弹层
  5. , table = layui.table //表格
  6. , form = layui.form
  7. ,upload = layui.upload
  8. /**********列表参数设置**********/
  9. var list_id = $('#list_id').val();
  10. var tableIds = 'advertisinglist'; //表格节点ID
  11. var rowIds = 'advertisingfunc'; //列操作节点ID
  12. var url = '/listnav/indexpush/pushtitleform';//数据接口
  13. var where = {token: csrfToken,list_id:list_id};//参数
  14. /************表格实列************/
  15. table.render({
  16. elem: '#' + tableIds
  17. , url: url //数据接口
  18. , where: where
  19. , method: 'post'
  20. , page: true //开启分页
  21. , text: '数据加载中'
  22. , height: 580
  23. , id: 'tablerReload'
  24. , cols: [[ //表头
  25. {type: 'numbers', title: '序号', width: 50}
  26. , {field: 'title', title: '推送名称', align: 'center'}
  27. , {field: 'url', title: '跳转链接', align: 'center'}
  28. , {
  29. field: 'sort',
  30. title: '排序',
  31. width: 100,
  32. event: 'sortData',
  33. edit: 'text',
  34. align: 'center',
  35. sort: true,
  36. templet: "#sortBox"
  37. }
  38. , {field: 'state', title: '审核', align: 'center', width: 100,templet: function (d) {
  39. if (d.state == 2) {
  40. return '<input type="checkbox" value="' + d.id + '" res_state="1" lay-skin="switch" lay-filter="switchTest3" lay-text="|">'
  41. } else {
  42. return '<input type="checkbox" checked value="' + d.id + '" res_state="2" lay-skin="switch" lay-filter="switchTest3" lay-text="|">'
  43. }
  44. }}
  45. , {field: 'create_at', title: '添加时间', width: 200, align: 'center'}
  46. , {fixed: 'right', title: '操作', width: 180, align: 'center', toolbar: '#' + rowIds}
  47. ]]
  48. });
  49. /********************************************列操作begin***********************************************************/
  50. table.on('tool(' + tableIds + ')', function (obj) {
  51. var layEvent = obj.event,
  52. data = obj.data;
  53. if (layEvent === 'del') {
  54. var index = layer.confirm('您确定要删除吗?', {btn: ['确定', '取消']}, function () {
  55. setListHouse('del',data.id);
  56. layer.close(index);
  57. })
  58. } else if (layEvent === 'sortData') { //修改排序
  59. table.on('edit(' + tableIds + ')', function (obj) {
  60. var data = obj.data;
  61. setListHouse('sort',data.id,data.sort);
  62. })
  63. }
  64. });
  65. /********************************************列操作end***********************************************************/
  66. /********************************************栏目操作gegin*******************************************************/
  67. var $ = layui.$, active = {
  68. addData: function () { //获取选中数据
  69. var index = layui.layer.open({
  70. type: 2,
  71. title: '添加首页区域主推楼盘推送',
  72. closeBtn: 1, //不显示关闭按钮
  73. area: ['60%', '80%'],
  74. content: '/listnav/indexpush/pushtitleadd?list_id='+list_id//iframe的url,no代表不显示滚动条
  75. , success: function (layero, index) {
  76. },
  77. end: function () {
  78. table.reload('tablerReload');
  79. }
  80. });
  81. }
  82. };
  83. $('.demoTable .layui-btn').on('click', function () {
  84. var type = $(this).data('type');
  85. active[type] ? active[type].call(this) : '';
  86. });
  87. /********************************************栏目操作end*******************************************************/
  88. /********************************************提交操作begin*****************************************************/
  89. form.on('submit(adds)', function (data) {
  90. var formData = new FormData($('form')[0]);
  91. var index = layer.msg('数据提交中,请稍候', {icon: 16, time: false, shade: 0.8}); //数据提交提示
  92. $.ajax({
  93. cache: false,
  94. type: "post",
  95. url: "/listnav/indexpush/pushtitleaddform",
  96. data: formData, // 你的formid
  97. contentType: false, //jax 中 contentType 设置为 false 是为了避免 JQuery 对其操作,从而失去分界符,而使服务器不能正常解析文件
  98. processData: false, //当设置为true的时候,jquery ajax 提交的时候不会序列化 data,而是直接使用data
  99. error: function (request) {
  100. layer.close(index);
  101. layer.msg("请联系管理员");
  102. },
  103. success: function (data) {
  104. layer.msg(data.msg);
  105. if(data.code == 200){
  106. TableClose();
  107. }
  108. }
  109. });
  110. return false;
  111. });
  112. /********************************************提交操作end*********************************************************/
  113. /********************************************其他操作begin*******************************************************/
  114. //监听指定开关
  115. form.on('switch(switchTest3)', function (data) {
  116. let id = data.value;
  117. let val = $(this).attr('res_state');
  118. var index = layer.confirm('确定要修改此操作吗?', {btn: ['确定', '取消']}, function () {
  119. setListHouse('state',id,val)
  120. layer.close(index)
  121. }, function (aa) {
  122. renderTable(); //重新加载
  123. })
  124. });
  125. function setListHouse(code, id, val = null) {
  126. $.post('/listnav/indexpush/set',{code:code,id:id,val:val},function(res){
  127. layer.msg(res.msg)
  128. table.reload('tablerReload'); //重新加载
  129. },'json')
  130. }
  131. /********************************************其他操作end*********************************************************/
  132. })