72 lines
2.8 KiB
JavaScript
Executable File
72 lines
2.8 KiB
JavaScript
Executable File
var mmg;
|
|
function initGrid(){
|
|
var h = WST.pageHeight();
|
|
var cols = [
|
|
{title:'角色名称', name:'roleName', width: 30},
|
|
{title:'角色备注', name:'roleDesc' },
|
|
{title:'操作', name:'' ,width:140, lockWidth:true,align:'center', renderer: function(val,item,rowIndex){
|
|
var h = "";
|
|
if(WST.GRANT.JSGL_02)h += "<a class='btn btn-blue' onclick='javascript:toEdit(" + item['roleId'] + ")'><i class='fa fa-pencil'></i>修改</a> ";
|
|
if(WST.GRANT.JSGL_03)h += "<a class='btn btn-red' onclick='javascript:toDel(" + item['roleId'] + ")'><i class='fa fa-trash-o'></i>删除</a> ";
|
|
return h;
|
|
}}
|
|
];
|
|
|
|
mmg = $('.mmg').mmGrid({height: (h-153),indexCol: true, cols: cols,method:'POST',
|
|
url: WST.U('admin/roles/pageQuery'), fullWidthRows: true, autoLoad: true,
|
|
plugins: [
|
|
$('#pg').mmPaginator({})
|
|
]
|
|
});
|
|
$('#headTip').WSTTips({width:90,height:35,callback:function(v){
|
|
var diff = v?153:125;
|
|
mmg.resize({height:h-diff})
|
|
}});
|
|
}
|
|
function toEdit(id){
|
|
location.href=WST.U('admin/roles/toEdit','id='+id);
|
|
}
|
|
function toDel(id){
|
|
var box = WST.confirm({content:"您确定要删除该角色吗?",yes:function(){
|
|
var loading = WST.msg('正在提交数据,请稍后...', {icon: 16,time:60000});
|
|
$.post(WST.U('admin/roles/del'),{id:id},function(data,textStatus){
|
|
layer.close(loading);
|
|
var json = WST.toAdminJson(data);
|
|
if(json.status=='1'){
|
|
WST.msg("操作成功",{icon:1});
|
|
layer.close(box);
|
|
mmg.load();
|
|
}else{
|
|
WST.msg(json.msg,{icon:2});
|
|
}
|
|
});
|
|
}});
|
|
}
|
|
function getNodes(event, treeId, treeNode){
|
|
zTree.expandNode(treeNode,true, true, true);
|
|
if($.inArray(treeNode.privilegeCode,rolePrivileges)>-1){
|
|
zTree.checkNode(treeNode,true,true);
|
|
}
|
|
}
|
|
function save(){
|
|
if(!$('#roleName').isValid())return;
|
|
var nodes = zTree.getChangeCheckedNodes();
|
|
var privileges = [];
|
|
for(var i=0;i<nodes.length;i++){
|
|
if(nodes[i].isParent==0)privileges.push(nodes[i].privilegeCode);
|
|
}
|
|
var params = WST.getParams('.ipt');
|
|
params.privileges = privileges.join(',');
|
|
var loading = WST.msg('正在提交数据,请稍后...', {icon: 16,time:60000});
|
|
$.post(WST.U('admin/roles/'+((params.roleId==0)?"add":"edit")),params,function(data,textStatus){
|
|
layer.close(loading);
|
|
var json = WST.toAdminJson(data);
|
|
if(json.status=='1'){
|
|
WST.msg("操作成功",{icon:1});
|
|
location.href=WST.U('admin/roles/index');
|
|
}else{
|
|
WST.msg(json.msg,{icon:2});
|
|
}
|
|
});
|
|
}
|