onepushnews.js 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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(); //关键id
  10. var tableIds = 'advertisinglist'; //表格节点ID
  11. var rowIds = 'advertisingfunc'; //列操作节点ID
  12. var url = '/listnews/indexpush/onepushnewsform';//数据接口
  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: 'subject', title: '咨询名称', align: 'center'}
  27. , {field: 'news_name', title: '咨询分类', align: 'center'}
  28. , {field: 'city_name', title: '地区', align: 'center'}
  29. , {
  30. field: 'sort',
  31. title: '排序',
  32. width: 100,
  33. event: 'sortData',
  34. edit: 'text',
  35. align: 'center',
  36. sort: true,
  37. templet: "#sortBox"
  38. }
  39. , {field: 'state', title: '审核', align: 'center', width: 100,templet: function (d) {
  40. if (d.state == 2) {
  41. return '<input type="checkbox" value="' + d.id + '" res_state="1" lay-skin="switch" lay-filter="switchTest3" lay-text="|">'
  42. } else {
  43. return '<input type="checkbox" checked value="' + d.id + '" res_state="2" lay-skin="switch" lay-filter="switchTest3" lay-text="|">'
  44. }
  45. }}
  46. , {field: 'create_at', title: '添加时间', width: 200, align: 'center'}
  47. , {fixed: 'right', title: '操作', width: 180, align: 'center', toolbar: '#' + rowIds}
  48. ]]
  49. });
  50. /********************************************列操作begin***********************************************************/
  51. table.on('tool(' + tableIds + ')', function (obj) {
  52. var layEvent = obj.event,
  53. data = obj.data;
  54. if (layEvent === 'del') {
  55. var index = layer.confirm('您确定要删除吗?', {btn: ['确定', '取消']}, function () {
  56. setListNews('del',data.id);
  57. layer.close(index);
  58. })
  59. } else if (layEvent === 'sortData') { //修改排序
  60. table.on('edit(' + tableIds + ')', function (obj) {
  61. var data = obj.data;
  62. setListNews('sort',data.id,data.sort);
  63. })
  64. }
  65. });
  66. /********************************************列操作end***********************************************************/
  67. /********************************************栏目操作gegin*******************************************************/
  68. var $ = layui.$, active = {
  69. addData: function () { //获取选中数据
  70. var index = layui.layer.open({
  71. type: 2,
  72. title: '移动端首页房产咨询添加',
  73. closeBtn: 1, //不显示关闭按钮
  74. area: ['60%', '30%'],
  75. content: '/listnews/indexpush/onepushnewsadd?list_id='+list_id//iframe的url,no代表不显示滚动条
  76. , success: function (layero, index) {
  77. },
  78. end: function () {
  79. table.reload('tablerReload');
  80. }
  81. });
  82. }
  83. };
  84. $('.demoTable .layui-btn').on('click', function () {
  85. var type = $(this).data('type');
  86. active[type] ? active[type].call(this) : '';
  87. });
  88. /********************************************栏目操作end*******************************************************/
  89. /********************************************提交操作begin*****************************************************/
  90. form.on('submit(adds)', function (data) {
  91. var formData = new FormData($('form')[0]);
  92. var index = layer.msg('数据提交中,请稍候', {icon: 16, time: false, shade: 0.8}); //数据提交提示
  93. $.ajax({
  94. cache: false,
  95. type: "post",
  96. url: "/listnews/indexpush/onepushnewsaddform",
  97. data: formData, // 你的formid
  98. contentType: false, //jax 中 contentType 设置为 false 是为了避免 JQuery 对其操作,从而失去分界符,而使服务器不能正常解析文件
  99. processData: false, //当设置为true的时候,jquery ajax 提交的时候不会序列化 data,而是直接使用data
  100. error: function (request) {
  101. layer.close(index);
  102. layer.msg("请联系管理员");
  103. },
  104. success: function (data) {
  105. layer.msg(data.msg);
  106. if(data.code == 200){
  107. TableClose();
  108. }
  109. }
  110. });
  111. return false;
  112. });
  113. form.on('submit(edits)', function (data) {
  114. var formData = new FormData($('form')[0]);
  115. var index = layer.msg('数据提交中,请稍候', {icon: 16, time: false, shade: 0.8}); //数据提交提示
  116. $.ajax({
  117. cache: false,
  118. type: "post",
  119. url: "/listadvertising/listadvertisingeditform",
  120. data: formData, // 你的formid
  121. contentType: false, //jax 中 contentType 设置为 false 是为了避免 JQuery 对其操作,从而失去分界符,而使服务器不能正常解析文件
  122. processData: false, //当设置为true的时候,jquery ajax 提交的时候不会序列化 data,而是直接使用data
  123. error: function (request) {
  124. layer.close(index);
  125. layer.msg("请联系管理员");
  126. },
  127. success: function (data) {
  128. layer.msg(data.msg);
  129. if(data.code == 200){
  130. TableClose();
  131. }
  132. }
  133. });
  134. return false;
  135. });
  136. /********************************************提交操作end*********************************************************/
  137. /********************************************其他操作begin*******************************************************/
  138. //选择咨询
  139. $('.The_house').focus(function () {
  140. indexOpen = parent.layui.layer.open({
  141. type: 2,
  142. title: '选择需要添加的楼盘',
  143. area: ['', '100%'],
  144. content: '/publicuse/news?type=1',
  145. success: function (layero, index) {
  146. },
  147. end: function () {
  148. }
  149. });
  150. parent.layui.layer.full(indexOpen);
  151. //改变窗口大小时,重置弹窗的宽高,防止超出可视区域(如F12调出debug的操作)
  152. $(window).on("resize", function () {
  153. parent.layui.layer.full(indexOpen);
  154. })
  155. })
  156. //监听指定开关
  157. form.on('switch(switchTest3)', function (data) {
  158. let id = data.value;
  159. let val = $(this).attr('res_state');
  160. var index = layer.confirm('确定要修改此操作吗?', {btn: ['确定', '取消']}, function () {
  161. setListNews('state',id,val)
  162. layer.close(index)
  163. }, function (aa) {
  164. renderTable(); //重新加载
  165. })
  166. });
  167. function setListNews(code, id, val = null) {
  168. $.post('/listnews/indexpush/set',{code:code,id:id,val:val},function(res){
  169. layer.msg(res.msg)
  170. table.reload('tablerReload'); //重新加载
  171. },'json')
  172. }
  173. /********************************************其他操作end*********************************************************/
  174. })