houselabel.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. layui.use([ 'laypage', 'layer', 'table', 'element','form'], function(){
  2. var layer = layui.layer //弹层
  3. ,table = layui.table //表格
  4. ,element = layui.element //元素操作
  5. ,form = layui.form;
  6. var tableIds = 'houselabellist'; //表格ID
  7. //第一个实例
  8. table.render({
  9. elem: '#'+tableIds
  10. ,url: '/dictionarya/houselabelform' //数据接口
  11. ,where:{token:csrfToken}
  12. ,method:'post'
  13. ,page: true //开启分页
  14. ,height:600
  15. ,text:'数据加载中'
  16. ,id:'houselabellist'
  17. ,cols: [[ //表头
  18. // {field: 'id', title: 'ID', width:80, sort: true, fixed: 'left',align:'center'},
  19. {field: 'name', title: '楼盘标签名称',align:'center'}
  20. ,{field: 'update_at', title: '更新时间', width:150,align:'center'}
  21. ,{field: 'create_at', title: '添加时间', width:150,align:'center'}
  22. ,{fixed: 'right',title:'操作', width: 165, align:'center', toolbar: '#operate'}
  23. ]]
  24. });
  25. //列表操作
  26. table.on('tool('+tableIds+')', function(obj){
  27. var layEvent = obj.event,
  28. data = obj.data;
  29. if(layEvent === 'edit'){
  30. layer.open({
  31. type: 2,
  32. title: '修改建筑类别',
  33. area: ['600px', '500px'],
  34. anim: 2,
  35. content:'/dictionarya/labeledit?id='+data.id, //iframe的url,no代表不显示滚动条
  36. end:function () {
  37. table.reload('houselabellist');
  38. }
  39. });
  40. } else if(layEvent === 'del') {
  41. layer.confirm('您确定要删除吗?',{ btn: ['确定', '取消']},function () {
  42. $.post('/dictionarya/labeldel',{'id':data.id},function (data) {
  43. if(data.code == 200)
  44. {
  45. layer.msg(data.msg);
  46. table.reload('houselabellist');
  47. } else if(data.code == 300 ) {
  48. layer.msg(data.msg);
  49. }
  50. })
  51. })
  52. }
  53. });
  54. var $ = layui.$, active = {
  55. addData: function(){ //获取选中数据
  56. layer.open({
  57. type: 2,
  58. title: '添加楼盘标签',
  59. closeBtn: 1, //不显示关闭按钮
  60. shade: [0],
  61. area: ['600px', '500px'],
  62. anim: 2,
  63. content: '/dictionarya/houselabeladd',
  64. end:function () {
  65. table.reload('houselabellist');
  66. }//iframe的url,no代表不显示滚动条
  67. });
  68. // var checkStatus = table.checkStatus('idTest')
  69. // ,data = checkStatus.data;
  70. // layer.alert(JSON.stringify(data));
  71. }
  72. };
  73. $('.demoTable .layui-btn').on('click', function(){
  74. var type = $(this).data('type');
  75. active[type] ? active[type].call(this) : '';
  76. });
  77. //修改
  78. // form.on('submit(editlabel)', function(data){
  79. // $.post('/dictionarya/labeleditform',{'data':data.field,'token':csrfToken},function (data) {
  80. // if(data.code == 200)
  81. // {
  82. // layer.msg(data.msg);
  83. // parent.layui.table.reload(tableIds);
  84. // TableClose();
  85. // } else if(data.code == 300 ) {
  86. // layer.msg(data.msg);
  87. // }
  88. // })
  89. // return false;
  90. // });
  91. //
  92. // //添加
  93. // form.on('submit(addlabel)', function(data){
  94. // $.post('/dictionarya/labeladdform',{'data':data.field,'token':csrfToken},function (data) {
  95. // if(data.code == 200)
  96. // {
  97. // layer.msg(data.msg);
  98. // parent.layui.table.reload(tableIds);
  99. // } else if(data.code == 300 ) {
  100. // layer.msg(data.msg);
  101. // }
  102. // })
  103. // return false;
  104. // });
  105. });