hotsale.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. layui.use([ 'laypage', 'layer', 'table', 'element','form','upload'], function(){
  2. var laypage = layui.laypage //分页
  3. ,$ = layui.jquery
  4. ,layer = layui.layer //弹层
  5. ,table = layui.table //表格
  6. ,element = layui.element //元素操作
  7. ,form = layui.form
  8. ,upload = layui.upload;
  9. var tableIds = 'videolist'; //表格ID
  10. var type_id = $('input[name="typeid"]').val();
  11. //第一个实例
  12. table.render({
  13. elem: '#'+tableIds
  14. ,url: '/push/hotsaleform' //数据接口
  15. ,where:{token:csrfToken,type:type_id}
  16. ,method:'post'
  17. ,page: true //开启分页
  18. ,text:'数据加载中'
  19. ,id:'tablerReload'
  20. ,cols: [[ //表头
  21. {type:'numbers',title:'序号',width:50},
  22. {type: "checkbox", width:50},
  23. {field: 'name', title: '楼盘名称', align:'center'},
  24. {field: 'sort', title: '排序',width:100, event:'sortData',edit: 'text', align:'center',sort: true,templet:"#sortBox"},
  25. {field: 'create_at', title: '添加时间',width:150, align:'center'},
  26. {field: 'is_show', title: '审核',align:'center',width:100, templet:function (d) {
  27. if(d.is_show == 2){
  28. return '<input type="checkbox" value="'+d.id+'" name="open" lay-skin="switch" lay-filter="switchTest" lay-text="|">'
  29. } else {
  30. return '<input type="checkbox" checked value="'+d.id+'" name="open" lay-skin="switch" lay-filter="switchTest" lay-text="|">'
  31. }
  32. }}
  33. ,{fixed: 'right',title:'操作', width: 100, align:'center', toolbar: '#operate'}
  34. ]],
  35. done: function(res, curr, count){
  36. //如果是异步请求数据方式,res即为你接口返回的信息。
  37. //如果是直接赋值的方式,res即为:{data: [], count: 99} data为当前页数据、count为数据总长度
  38. //console.log(res);
  39. // console.log(curr); //得到当前页码
  40. // console.log(count); //得到数据总量
  41. // 动态添加批量删除按钮
  42. var _btn = '<div class="layui-inline wthis" style="float:left;position:relative;left:10px;bottom:35px">'
  43. + '<a class="layui-btn layui-btn-danger search_btn layui_w_btn" style="height:30px;line-height:30px;font-size:14px;" lay-submit="" lay-filter="del_alls_house">批量删除</a>'
  44. + '</div>';
  45. if($('.wthis').length < 1){
  46. $('.layui-form').eq(1).append(_btn);
  47. }
  48. // console.log($('.wthis').length)
  49. }
  50. });
  51. //监听指定开关
  52. form.on('switch(switchTest)', function(data){
  53. layer.confirm('确定要修改此操作吗?',{btn: ['确定', '取消']},function () {
  54. $.post('/push/saledelshow',{id:data.value,type:'show'},function (data) {
  55. layer.msg(data.msg);
  56. table.reload('tablerReload');
  57. })
  58. },function (aa) {
  59. table.reload('tablerReload'); //重新加载
  60. })
  61. });
  62. //列表操作
  63. table.on('tool('+tableIds+')', function(obj){
  64. var layEvent = obj.event,
  65. data = obj.data;
  66. if(layEvent === 'sortData'){ //修改排序
  67. table.on('edit('+tableIds+')', function(obj){
  68. var data = obj.data;
  69. // console.log(data)
  70. $.post('/push/saledelshow',{id:data.id,type:'sort',sort:data.sort},function (data) {
  71. if(data.code == 200)
  72. {
  73. layer.msg(data.msg);
  74. } else if(data.code == 300 ) {
  75. layer.msg(data.msg);
  76. }
  77. })
  78. })
  79. // layer.prompt({
  80. // formType: 2
  81. // ,title: '排序热销楼盘:<span style="color:red">'+data.name+'</span>'
  82. // ,value: data.sort
  83. // }, function(value, index){
  84. // $.post('/push/saledelshow',{id:data.id,type:'sort',sort:value},function (data) {
  85. // layer.msg(data.msg);
  86. // table.reload('tablerReload');
  87. // })
  88. // });
  89. }
  90. if(layEvent === 'del') {
  91. layer.confirm('您确定要删除吗?',{ btn: ['确定', '取消']},function () {
  92. $.post('/push/saledelshow',{id:data.id,type:'del'},function (data) {
  93. layer.msg(data.msg);
  94. table.reload('tablerReload');
  95. })
  96. })
  97. }
  98. });
  99. // 新增
  100. var $ = layui.$, active = {
  101. addData: function(){ //获取选中数据
  102. var index = layui.layer.open({
  103. type: 2,
  104. title: '添加楼盘',
  105. closeBtn: 1, //不显示关闭按钮
  106. area: ['600px','300px'],
  107. content: '/push/hotsaleadd?type='+type_id
  108. ,success:function (layero, index) {
  109. // indexOpen = layer.getChildFrame('body', index) ;
  110. // console.log(indexOpen);
  111. },
  112. end:function () {
  113. table.reload('tablerReload');
  114. }
  115. });
  116. },
  117. reload:function(){
  118. var form = pfgs_serialize($('form'));
  119. // var name = '';
  120. // var house_name = '';
  121. // if(form.input_house == 'name'){
  122. // name = form.input_house_text;
  123. // } else if(form.input_house == 'house_name'){
  124. // house_name = form.input_house_text;
  125. // }
  126. table.reload('tablerReload',{
  127. where:{
  128. house_name: form.input_house_text,
  129. city: form.input_city
  130. },
  131. page:{
  132. curr:1
  133. }
  134. })
  135. }
  136. };
  137. $('.demoTable .layui-btn').on('click', function(){
  138. var type = $(this).data('type');
  139. active[type] ? active[type].call(this) : '';
  140. });
  141. $('.The_house').focus(function(){
  142. // $('form').append('<input type="hidden" name="aa" value="aaa">');
  143. indexOpen = parent.layui.layer.open({
  144. type: 2,
  145. title: '选择需要添加的楼盘',
  146. area: ['','100%'],
  147. content: '/publicuse/housename',
  148. success:function (layero, index) {
  149. },
  150. end:function(){
  151. }
  152. });
  153. parent.layui.layer.full(indexOpen);
  154. //改变窗口大小时,重置弹窗的宽高,防止超出可视区域(如F12调出debug的操作)
  155. $(window).on("resize",function(){
  156. parent.layui.layer.full(indexOpen);
  157. })
  158. })
  159. //添加页面提交数据
  160. form.on('submit(add)', function(data){
  161. var index = layer.msg('数据提交中,请稍候',{icon: 16,time:false,shade:0.8}); //数据提交提示
  162. var formData = new FormData($('form')[0]);
  163. $.ajax({
  164. cache : false,
  165. type : "post",
  166. url : "/push/hotsaleaddform",
  167. data : formData, // 你的formid
  168. contentType: false, //jax 中 contentType 设置为 false 是为了避免 JQuery 对其操作,从而失去分界符,而使服务器不能正常解析文件
  169. processData: false, //当设置为true的时候,jquery ajax 提交的时候不会序列化 data,而是直接使用data
  170. error : function(request) {
  171. layer.close(index);
  172. layer.msg("请联系管理员");
  173. },
  174. success : function(data) {
  175. if(data.data != null){
  176. layer.msg(ReturnInfo(data.data),{icon:5});
  177. return ;
  178. }
  179. layer.msg(data.msg);
  180. parent.layer.close(oindex); //再执行关闭
  181. }
  182. });
  183. return false;
  184. });
  185. // // 动态添加批量删除按钮
  186. // var _btn = '<div class="layui-inline " style="float:left;position:relative;left:10px;bottom:35px">'
  187. // + '<a class="layui-btn layui-btn-danger search_btn layui_w_btn" style="height:30px;line-height:30px;font-size:14px;" lay-submit="" lay-filter="del_alls_house">批量删除</a>'
  188. // + '</div>';
  189. // $('.layui-form').eq(1).append(_btn);
  190. form.on('submit(del_alls_house)',function (data) {
  191. var checkStatus = table.checkStatus('tablerReload');
  192. var index = layer.msg('数据提交中,请稍候',{icon: 16,time:false,shade:0.8}); //数据提交提示
  193. if(typeof checkStatus.data[0] == 'object'){
  194. layer.confirm('您确定要删除吗?',{btn:['确认','取消']},function(){
  195. var formdat = new FormData();
  196. $.each(checkStatus.data,function (key,val) {
  197. formdat.append('hid[]',val.id);
  198. })
  199. $.ajax({
  200. cache : true,
  201. type : "post",
  202. url : "/push/hotsaledelall",
  203. data : formdat, // 你的formid
  204. // async : false, //async 默认为true异步,修改为false为同步
  205. contentType: false, //jax 中 contentType 设置为 false 是为了避免 JQuery 对其操作,从而失去分界符,而使服务器不能正常解析文件
  206. processData: false, //当设置为true的时候,jquery ajax 提交的时候不会序列化 data,而是直接使用data
  207. error : function(request) {
  208. layer.close(index); //关闭数据提交信息
  209. layer.alert("网络超时");
  210. },
  211. success : function(data) {
  212. if (data.code == 200) {
  213. layer.msg(data.msg);
  214. table.reload('tablerReload')
  215. } else {
  216. layer.msg(data.msg);
  217. }
  218. }
  219. });
  220. })
  221. return false;
  222. }
  223. layer.msg('请选择需要删除的楼盘',{icon:5});
  224. return false;
  225. })
  226. })