link.js 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. layui.use([ 'laypage', 'layer', 'table', 'element','form'], function(){
  2. var laypage = layui.laypage //分页
  3. ,layer = layui.layer //弹层
  4. ,table = layui.table //表格
  5. ,element = layui.element //元素操作
  6. ,form = layui.form;
  7. //第一个实例
  8. table.render({
  9. elem: '#menulist'
  10. ,url: '/othersiteset/friendshiplinkform' //数据接口
  11. ,where:{token:csrfToken}
  12. ,method:'post'
  13. ,page: true //开启分页
  14. ,height:600
  15. ,text:'数据加载中'
  16. ,id:'linkId'
  17. ,cols: [[ //表头
  18. {type:'numbers'}
  19. ,{field: 'title', title: '标题', align:'center'}
  20. ,{field: 'url', title: '地址', align:'center'}
  21. ,{field: 'city_name', title: '区域', align:'center'}
  22. ,{field: 'sys_name', title: '位置', align:'center'}
  23. ,{fixed: 'right',title:'操作', width: 200, align:'center', toolbar: '#operate'}
  24. ]]
  25. });
  26. //列表操作
  27. table.on('tool(menulist)', function(obj){
  28. var layEvent = obj.event,
  29. data = obj.data;
  30. if(layEvent === 'edit'){
  31. layer.open({
  32. type: 2,
  33. title: '修改友情链接',
  34. closeBtn: 1, //不显示关闭按钮
  35. shade: [0],
  36. area: ['600px', '500px'],
  37. anim: 2,
  38. content:'/othersiteset/friendshiplinkedit?id='+data.id,
  39. end:function () {
  40. table.reload('linkId');
  41. }
  42. });
  43. } else if(layEvent === 'del') {
  44. layer.confirm('您确定要删除吗?',{ btn: ['确定', '取消']},function () {
  45. $.post('/othersiteset/friendshiplinkdel',{'id':data.id},function (data) {
  46. if(data.data != null){
  47. layer.msg(ReturnInfo(data.data),{icon:5});
  48. return ;
  49. }
  50. layer.msg(data.msg);
  51. table.reload('linkId');
  52. })
  53. })
  54. }
  55. });
  56. var $ = layui.$, active = {
  57. addData: function(){ //获取选中数据
  58. layer.open({
  59. type: 2,
  60. title: '添加友情链接',
  61. closeBtn: 1, //不显示关闭按钮
  62. shade: [0],
  63. area: ['600px', '500px'],
  64. anim: 2,
  65. content: '/othersiteset/friendshiplinkadd', //iframe的url,no代表不显示滚动条
  66. end: function(){ //此处用于演示
  67. table.reload('linkId');
  68. }
  69. });
  70. }
  71. };
  72. $('.demoTable .layui-btn').on('click', function(){
  73. var type = $(this).data('type');
  74. active[type] ? active[type].call(this) : '';
  75. });
  76. form.on('submit(save_link)', function(data){
  77. $.post('/othersiteset/friendshiplinkeditform',{'data':data.field},function (data) {
  78. if(data.data != null){
  79. layer.msg(ReturnInfo(data.data),{icon:5});
  80. return ;
  81. }
  82. layer.msg(data.msg);
  83. })
  84. return false;
  85. });
  86. form.on('submit(tijiao)', function(data){
  87. $.post('/othersiteset/friendshiplinkaddform',{'data':data.field},function (data) {
  88. if(data.data != null){
  89. layer.msg(ReturnInfo(data.data),{icon:5});
  90. return ;
  91. }
  92. layer.msg(data.msg);
  93. })
  94. return false;
  95. });
  96. // form.on('submit(unload_tel)', function(data){
  97. // var index = layer.msg('数据提交中,请稍候',{icon: 16,time:false,shade:0.8}); //数据提交提示
  98. //
  99. // var formData = new FormData($('#cityForm')[0]);
  100. //
  101. // $.ajax({
  102. // cache : true,
  103. // type : "post",
  104. // url : "/othertel/addcityascription",
  105. // data : formData, // 你的formid
  106. // // async : false, //async 默认为true异步,修改为false为同步,
  107. // contentType: false, //jax 中 contentType 设置为 false 是为了避免 JQuery 对其操作,从而失去分界符,而使服务器不能正常解析文件
  108. // processData: false, //当设置为true的时候,jquery ajax 提交的时候不会序列化 data,而是直接使用data
  109. // error : function(request) {
  110. // layer.close(index); //关闭数据提交信息
  111. // layer.alert("网络超时");
  112. // },
  113. // success : function(data) {
  114. // if (data.code == 200) {
  115. // layer.msg(data.msg);
  116. // parent.layui.table.reload('menulist');
  117. // // TableClose();
  118. //
  119. // } else if(data.code == 300){
  120. // layer.msg(data.msg);
  121. // if(data.data.length > 0){
  122. // layer.msg(ReturnInfo(data.data),{icon:5});
  123. // }
  124. // }
  125. // }
  126. // });
  127. // return false;
  128. // });
  129. });