yahucity.js 12 KB

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