解决权限bug

This commit is contained in:
季圣华
2018-12-23 21:53:22 +08:00
parent c554e24e56
commit b163bc1d4a
10 changed files with 174 additions and 37 deletions

View File

@@ -184,11 +184,10 @@
onSelectPage: function (pageNum, pageSize) {
opts.pageNumber = pageNum;
opts.pageSize = pageSize;
pager.pagination('refresh',
{
pageNumber: pageNum,
pageSize: pageSize
});
pager.pagination('refresh', {
pageNumber: pageNum,
pageSize: pageSize
});
showRoleDetails(pageNum, pageSize);
}
});
@@ -427,7 +426,7 @@
alert("请选择一条数据再操作!");
return false;
}
this.href = "/pages/manage/roleApp.html?id=" + currentRow.Id;
this.href = "/pages/manage/roleApp.html?id=" + currentRow.id;
});
//分配功能
@@ -437,7 +436,7 @@
alert("请选择一条数据再操作!");
return false;
}
this.href = "/pages/manage/roleFunctions.html?id=" + currentRow.Id;
this.href = "/pages/manage/roleFunctions.html?id=" + currentRow.id;
});
//分配按钮
@@ -447,7 +446,7 @@
alert("请选择一条数据再操作!");
return false;
}
this.href = "/pages/manage/rolePushBtn.html?id=" + currentRow.Id;
this.href = "/pages/manage/rolePushBtn.html?id=" + currentRow.id;
});
</script>
</body>