houselabel.js 3.9 KB

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