pone.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  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 type_id = $('input[name="type"]').val();
  10. var tableIds = 'videolist'; //表格ID
  11. var oindex = 0;
  12. //第一个实例
  13. table.render({
  14. elem: '#' + tableIds
  15. , url: '/pushnews/poneform' //数据接口
  16. , where: {token: csrfToken, type: type_id}
  17. , method: 'post'
  18. , page: true //开启分页
  19. ,height:600
  20. , text: '数据加载中'
  21. , id: 'tablerReload'
  22. , cols: [[ //表头
  23. {type: 'numbers', title: '序号', width: 50},
  24. {type: "checkbox", width: 50},
  25. {field: 'subject', title: '标题', align: 'center'},
  26. /*{field: 'img', title: '图片',width:200, align:'center',templet:function(d){
  27. return '<img class="layui_magnify" src="'+d.img+'"/>'
  28. }},*/
  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: 'create_at', title: '添加时间', width: 150, align: 'center'}
  40. , {
  41. field: 'is_show', title: '审核', align: 'center', width: 100, templet: function (d) {
  42. if (d.is_show == 2) {
  43. return '<input type="checkbox" value="' + d.id + '" name="open" lay-skin="switch" lay-filter="switchTest" lay-text="|">'
  44. } else {
  45. return '<input type="checkbox" checked value="' + d.id + '" name="open" lay-skin="switch" lay-filter="switchTest" lay-text="|">'
  46. }
  47. }
  48. }
  49. , {fixed: 'right', title: '操作', width: 200, align: 'center', toolbar: '#operate'}
  50. ]]
  51. });
  52. // 列表点击放大图片
  53. $('.layui-table-main').on('click', '.layui_magnify', function () {
  54. var _src = $(this).attr('src');
  55. layui.layer.open({
  56. type: 1,
  57. title: false, //是否显示标题
  58. area: ['95%', '55%'],
  59. shade: 0.6, //透明度
  60. closeBtn: 1, //按钮 1有,0无
  61. shadeClose: true,
  62. content: '<img style="width:100%;height:100%" src="' + _src + '">',
  63. });
  64. });
  65. //监听指定开关
  66. form.on('switch(switchTest)', function (data) {
  67. layer.confirm('确定要修改此操作吗?', {btn: ['确定', '取消']}, function () {
  68. $.post('/pushnews/newsdelandshow', {id: data.value, type: 'show'}, function (data) {
  69. layer.msg(data.msg);
  70. table.reload('tablerReload');
  71. })
  72. }, function (aa) {
  73. table.reload('tablerReload'); //重新加载
  74. })
  75. });
  76. // 动态添加批量删除按钮
  77. var _btn = '<div class="layui-inline " style="float:left;position:relative;left:10px;bottom:35px">'
  78. + '<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>'
  79. + '</div>'
  80. $('.layui-form').eq(1).append(_btn)
  81. //列表操作
  82. table.on('tool(' + tableIds + ')', function (obj) {
  83. var layEvent = obj.event,
  84. data = obj.data;
  85. if (layEvent === 'sortData') { //修改排序
  86. table.on('edit(' + tableIds + ')', function (obj) {
  87. var data = obj.data;
  88. // console.log(data)
  89. $.post('/pushnews/newsdelandshow', {id: data.id, type: 'sort', sort: data.sort}, function (data) {
  90. if (data.code == 200) {
  91. layer.msg(data.msg);
  92. } else if (data.code == 300) {
  93. layer.msg(data.msg);
  94. }
  95. })
  96. })
  97. // layer.prompt({
  98. // formType: 2
  99. // ,title: '排序'
  100. // ,value: data.sort
  101. // }, function(value, index){
  102. // $.post('/pushnews/newsdelandshow',{id:data.id,type:'sort',sort:value},function (data) {
  103. // layer.msg(data.msg);
  104. // table.reload('tablerReload');
  105. // })
  106. // });
  107. } else if (layEvent === 'del') {
  108. layer.confirm('您确定要删除吗?', {btn: ['确定', '取消']}, function () {
  109. $.post('/pushnews/newsdelandshow', {id: data.id, type: 'del'}, function (data) {
  110. layer.msg(data.msg);
  111. table.reload('tablerReload');
  112. })
  113. })
  114. } else if (layEvent === 'edit') {
  115. var index = layer.open({
  116. type: 2,
  117. title: '编辑',
  118. area: ['800px', '500px'],
  119. content: '/pushfresh/freshcityedit?id=' + data.id + '&name=' + data.city_name,
  120. end: function () {
  121. table.reload('tablerReload'); //重新加载
  122. }
  123. });
  124. } else if (layEvent === 'Relation') {
  125. var index = layui.layer.open({
  126. title: '<span style="color:red" >[' + data.city_name + ']</span>区域相关楼盘',
  127. type: 2,
  128. area: ['', '100%'],
  129. maxmin: true,
  130. content: "/pushfresh/cityhouse?id=" + data.city_id,
  131. end: function () {
  132. table.reload('tablerReload');
  133. }
  134. })
  135. layui.layer.full(index);
  136. //改变窗口大小时,重置弹窗的宽高,防止超出可视区域(如F12调出debug的操作)
  137. $(window).on("resize", function () {
  138. layui.layer.full(index);
  139. })
  140. }
  141. });
  142. //添加图片上传
  143. upload.render({
  144. elem: '#test1'
  145. , url: '/house/createimg'
  146. , data: {token: csrfToken}
  147. , field: 'img'
  148. , size: 1000 //限制上传图片的大小,单位为KB
  149. , exts: 'png|jpg|jpeg' //只允许上传压缩文件
  150. , auto: false
  151. , bindAction: '#addcity'
  152. , choose: function (obj) {
  153. obj.preview(function (index, file, result) {
  154. $('#breviary_img').attr('src', result); //图片链接(base64)
  155. });
  156. }
  157. });
  158. // 图片放大浏览
  159. $('.layui_magnify').click(function () {
  160. var _src = $(this).attr('src');
  161. layui.layer.open({
  162. type: 1,
  163. title: false, //是否显示标题
  164. area: ['60%', '80%'],
  165. shade: 0.6, //透明度
  166. closeBtn: 1, //按钮 1有,0无
  167. shadeClose: true,
  168. content: '<img style="width:100%;height:100%" src="' + _src + '">',
  169. });
  170. })
  171. // 新增
  172. var $ = layui.$, active = {
  173. addData: function () { //获取选中数据
  174. oindex = layui.layer.open({
  175. type: 2,
  176. title: '添加',
  177. closeBtn: 1, //不显示关闭按钮
  178. area: ['800px', '500px'],
  179. content: '/pushnews/poneadd?type=' + type_id //iframe的url,no代表不显示滚动条
  180. , success: function (layero, index) {
  181. },
  182. end: function () {
  183. table.reload('tablerReload');
  184. }
  185. });
  186. },
  187. reload: function () {//搜索
  188. var form = pfgs_serialize($('form'));
  189. var name = '';
  190. var house_name = '';
  191. if (form.input_house == 'name') {
  192. name = form.input_house_text;
  193. } else if (form.input_house == 'house_name') {
  194. house_name = form.input_house_text;
  195. }
  196. table.reload('tablerReload', {
  197. where: {
  198. title: name,
  199. house_name: house_name,
  200. city: form.input_city,
  201. type_name: form.type_name
  202. }
  203. })
  204. },
  205. };
  206. $('.demoTable .layui-btn').on('click', function () {
  207. var type = $(this).data('type');
  208. active[type] ? active[type].call(this) : '';
  209. });
  210. $('.The_house').focus(function () {
  211. indexOpen = parent.layui.layer.open({
  212. type: 2,
  213. /*title: '选择需要添加的资讯',*/
  214. area: ['', '100%'],
  215. content: '/pushnews/pushnews?type=1', //1单选
  216. success: function (layero, index) {
  217. },
  218. end: function () {
  219. }
  220. });
  221. parent.layui.layer.full(indexOpen);
  222. //改变窗口大小时,重置弹窗的宽高,防止超出可视区域(如F12调出debug的操作)
  223. $(window).on("resize", function () {
  224. parent.layui.layer.full(indexOpen);
  225. })
  226. })
  227. //添加页面提交数据
  228. form.on('submit(add)', function (data) {
  229. var formData = new FormData($('form')[0]);
  230. layer.msg('数据提交中,请稍候', {icon: 16, time: false, shade: 0.8}); //数据提交提示
  231. $.ajax({
  232. type: "post",
  233. url: "/pushnews/poneaddform",
  234. data: formData,
  235. contentType: false, //jax 中 contentType 设置为 false 是为了避免 JQuery 对其操作,从而失去分界符,而使服务器不能正常解析文件
  236. processData: false, //当设置为true的时候,jquery ajax 提交的时候不会序列化 data,而是直接使用data
  237. error: function (request) {
  238. layer.close(index);
  239. layer.msg("请联系管理员");
  240. },
  241. success: function (data) {
  242. if (data.data != null) {
  243. layer.msg(ReturnInfo(data.data), {icon: 5});
  244. return;
  245. }
  246. layer.msg(data.msg);
  247. parent.layer.closeAll(); //再执行关闭
  248. }
  249. });
  250. return false;
  251. });
  252. form.on('submit(del_alls_house)', function (data) {
  253. var checkStatus = table.checkStatus('tablerReload');
  254. var index = layer.msg('数据提交中,请稍候', {icon: 16, time: false, shade: 0.8}); //数据提交提示
  255. if (typeof checkStatus.data[0] == 'object') {
  256. layer.confirm('您确定要删除吗?', {btn: ['确认', '取消']}, function () {
  257. var formdat = new FormData();
  258. $.each(checkStatus.data, function (key, val) {
  259. formdat.append('hid[]', val.id);
  260. })
  261. $.ajax({
  262. cache: true,
  263. type: "post",
  264. url: "/pushnews/newpdel",
  265. data: formdat, // 你的formid
  266. // async : false, //async 默认为true异步,修改为false为同步
  267. contentType: false, //jax 中 contentType 设置为 false 是为了避免 JQuery 对其操作,从而失去分界符,而使服务器不能正常解析文件
  268. processData: false, //当设置为true的时候,jquery ajax 提交的时候不会序列化 data,而是直接使用data
  269. error: function (request) {
  270. layer.close(index); //关闭数据提交信息
  271. layer.alert("网络超时");
  272. },
  273. success: function (data) {
  274. if (data.code == 200) {
  275. layer.msg(data.msg);
  276. reloadTable(reloadId);
  277. } else {
  278. layer.msg(data.msg);
  279. }
  280. }
  281. });
  282. })
  283. return false;
  284. }
  285. layer.msg('请选择需要删除的楼盘', {icon: 5});
  286. return false;
  287. })
  288. form.on('submit(edit_city)', function (data) {
  289. var index = layer.msg('数据提交中,请稍候', {icon: 16, time: false, shade: 0.8}); //数据提交提示
  290. var formData = new FormData($('form')[0]);
  291. $.ajax({
  292. type: "post",
  293. url: "/pushfresh/freshcityeditform",
  294. data: formData,
  295. contentType: false, //jax 中 contentType 设置为 false 是为了避免 JQuery 对其操作,从而失去分界符,而使服务器不能正常解析文件
  296. processData: false, //当设置为true的时候,jquery ajax 提交的时候不会序列化 data,而是直接使用data
  297. error: function (request) {
  298. layer.close(index);
  299. layer.msg("请联系管理员");
  300. },
  301. success: function (data) {
  302. if (data.data != null) {
  303. layer.msg(ReturnInfo(data.data), {icon: 5});
  304. return;
  305. }
  306. layer.msg(data.msg);
  307. parent.layer.close(oindex); //再执行关闭
  308. }
  309. });
  310. return false;
  311. });
  312. })