yl.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. layui.use(['form','layer','laydate','table','laytpl','layedit','upload'],function(){
  2. var form = layui.form,
  3. layer = layui.layer,
  4. $ = layui.jquery,
  5. laydate = layui.laydate,
  6. table = layui.table,
  7. layedit = layui.layedit
  8. ,upload = layui.upload;
  9. var tableIds = 'wxuserlist';
  10. //楼盘列表
  11. var tableIns = table.render({
  12. elem: '#'+tableIds,
  13. url : '/wx/yhomeform',
  14. method:'post',
  15. page : true,
  16. limit : 20,
  17. id:'tablerReload',
  18. cols : [[
  19. {type: "checkbox", width:50},
  20. {type:'numbers'},
  21. {field: 'text', title: '语录', align:"center",sort: true},
  22. // {field: 'create_at', title: '添加时间',width:150, event:'sortData', align:'center',sort: true},
  23. {title: '操作', width:150, templet:'#housesListBar',fixed:"right",align:"center"}
  24. ]]
  25. });
  26. // table.reload('tablerReload'); //重新加载
  27. //表格头部操作菜单
  28. var $ = layui.$, active = {
  29. addData: function(){ //获取选中数据
  30. var index = layui.layer.open({
  31. title : "添加语录",
  32. type : 2,
  33. area:['80%','100%'],
  34. maxmin: true,
  35. content : "/wx/ycreate",
  36. end:function () {
  37. table.reload('tablerReload');
  38. }
  39. })
  40. },
  41. reload:function () {
  42. var form = pfgs_serialize($('form'));
  43. table.reload('tablerReload',{
  44. where:{
  45. name:form.name,
  46. }
  47. })
  48. }
  49. };
  50. $('.demoTable .layui-btn').on('click', function(){
  51. var type = $(this).data('type');
  52. active[type] ? active[type].call(this) : '';
  53. });
  54. //表格右边操作栏目
  55. table.on('tool('+tableIds+')', function(obj){
  56. var data = obj.data;
  57. if(obj.event === 'del'){ //删除操作
  58. layer.confirm('确定要删除吗?',{btn: ['确定', '取消']},function () {
  59. $.post('/wx/ydel',{id:data.id},function (data) {
  60. layer.msg(data.msg);
  61. table.reload('tablerReload');
  62. // if(data.code == 200)
  63. // {
  64. // layer.msg(data.msg);
  65. // table.reload('tablerReload');
  66. // } else if(data.code == 300 ) {
  67. // layer.msg(data.msg);
  68. // }
  69. })
  70. })
  71. } else if(obj.event === 'edit'){ //编辑操作
  72. var index = layui.layer.open({
  73. title : "编辑语录",
  74. type : 2,
  75. area:['80%','100%'],
  76. maxmin: true,
  77. content : "/wx/yedit?id="+data.id,
  78. end:function () {
  79. table.reload('tablerReload');
  80. }
  81. })
  82. // var index = layui.layer.open({
  83. // title : "编辑语录",
  84. // type : 2,
  85. // area:['','100%'],
  86. // maxmin: true,
  87. // content : "/wx/yedit?id="+data.id
  88. // })
  89. //
  90. // layui.layer.full(index);
  91. // //改变窗口大小时,重置弹窗的宽高,防止超出可视区域(如F12调出debug的操作)
  92. // $(window).on("resize",function(){
  93. // layui.layer.full(index);
  94. // })
  95. }
  96. });
  97. //添加
  98. form.on('submit(addyl)',function (data) {
  99. var index = layer.msg('数据提交中,请稍候',{icon: 16,time:false,shade:0.8}); //数据提交提示
  100. $.post('/wx/ycreateform',{data:data.field},function (data) {
  101. layer.msg(data.msg);
  102. // if(data.code == 200){
  103. // layer.open({
  104. // type: 1,
  105. // area:['200px','200px'],
  106. // content: '<span style="color:red;font-size:30px;">抽奖码:'+data.data.rand+'</span>' //这里content是一个普通的String
  107. // });
  108. // }
  109. table.reload('tablerReload');
  110. })
  111. return false;
  112. })
  113. //修改
  114. form.on('submit(edityl)',function (data) {
  115. var index = layer.msg('数据提交中,请稍候',{icon: 16,time:false,shade:0.8}); //数据提交提示
  116. $.post('/wx/yeditform',{data:data.field},function (data) {
  117. layer.msg(data.msg);
  118. // if(data.code == 200){
  119. // layer.open({
  120. // type: 1,
  121. // area:['200px','200px'],
  122. // content: '<span style="color:red;font-size:30px;">抽奖码:'+data.data.rand+'</span>' //这里content是一个普通的String
  123. // });
  124. // }
  125. table.reload('tablerReload');
  126. })
  127. return false;
  128. })
  129. });