layui.define([ 'form', 'laydate', 'table' ], function(exports) { var form = layui.form; var laydate = layui.laydate; var table = layui.table; var roleTable = null; var view ={ init:function(){ this.initTable(); this.initSearchForm(); this.initToolBar(); window.dataReload = function(){ Lib.doSearchForm($("#searchForm"),roleTable) } }, initTable:function(){ roleTable = table.render({ elem : '#roleTable', height : Lib.getTableHeight(2), method : 'post', url : Common.ctxPath + '/admin/role/list.json' //数据接口 ,page : Lib.tablePage //开启分页 ,limit : 10, cols : [ [ //表头 { type : 'checkbox', fixed:'left', }, { field : 'id', title : 'id', width : 80, fixed:'left', sort : true }, { field : 'code', title : '角色代码', width : 150 }, { field : 'name', title : '角色名称', width : 120, sort : true }, { field : 'typeText', title : '角色类型', width : 300, sort : true }, { field : 'createTime', title : '创建时间', width : 120, templet:function(d){ if(d.createTime == null){ return '--'; } return Common.getDate(d.createTime); }, sort : true } ] ] }); }, initSearchForm:function(){ Lib.initSearchForm( $("#searchForm"),roleTable,form); }, initToolBar:function(){ toolbar = { add : function() { //获取选中数据 var url = "/admin/role/add.do"; Common.openDlg(url,"角色管理>新增"); }, edit : function() { //获取选中数目 var data = Common.getOneFromTable(table,"roleTable"); if(data==null){ return ; } var url = "/admin/role/edit.do?id="+data.id; Common.openDlg(url,"角色管理>>编辑"); }, del : function() { layui.use(['del'], function(){ var delView = layui.del delView.delBatch(); }); }, roleUser : function() { var data = Common.getOneFromTable(table,"roleTable"); if(data==null){ return ; } var url = "/admin/role/user/list.do?roleId="+data.id; Common.openDlg(url,"角色管理>"+data.name+">用户列表"); } }; $('.ext-toolbar').on('click', function() { var type = $(this).data('type'); toolbar[type] ? toolbar[type].call(this) : ''; }); } } exports('index',view); });