hotsale.js 8.8 KB

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