link.js 5.0 KB

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