|
@ -110,8 +110,8 @@
|
|
|
{id: 7, text: '用户安全', icon: '${staticRoot}/images/index/menu06.png'},
|
|
|
{id: 71, pid: 7, text: '机构管理', url: '${contextRoot}/org/initial', icon: '${staticRoot}/images/index/Ins_icon.png'},
|
|
|
{id: 72, pid: 7, text: '用户管理', url: '${contextRoot}/user/initial', icon: '${staticRoot}/images/index/Ins_icon.png'},
|
|
|
{id: 73, pid: 7, text: '角色管理', url: '${contextRoot}/role/initial', icon: '${staticRoot}/images/index/Ins_icon.png'},
|
|
|
{id: 74, pid: 7, text: '权限管理', url: '${contextRoot}/authority/initial', icon: '${staticRoot}/images/index/Ins_icon.png'},
|
|
|
<%--{id: 73, pid: 7, text: '角色管理', url: '${contextRoot}/role/initial', icon: '${staticRoot}/images/index/Ins_icon.png'},--%>
|
|
|
<%--{id: 74, pid: 7, text: '权限管理', url: '${contextRoot}/authority/initial', icon: '${staticRoot}/images/index/Ins_icon.png'},--%>
|
|
|
//质控规则管理
|
|
|
{id: 8, text: '质控管理', icon: '${staticRoot}/images/index/menu05.png'},
|
|
|
{id: 81, pid: 8, text: '规则管理', url: '${contextRoot}/rule/initial', icon: '${staticRoot}/images/index/Ins_icon.png'},
|
|
@ -123,8 +123,8 @@
|
|
|
{id: 9, text: '系统配置', icon: '${staticRoot}/images/index/menu07.png'},
|
|
|
{id: 91, pid: 9, text: '系统参数', url: '${contextRoot}/param/initial', icon: '${staticRoot}/images/index/Ins_icon.png'},
|
|
|
{id: 92, pid: 9, text: '字典管理', url: '${contextRoot}/dict/initial', icon: '${staticRoot}/images/index/Ins_icon.png'},
|
|
|
{id: 93, pid: 9, text: '菜单配置', url: '${contextRoot}/menu/initial', icon: '${staticRoot}/images/index/Ins_icon.png'},
|
|
|
{id: 94, pid: 9, text: '菜单按钮配置', url: '${contextRoot}/menu/menuAction/initial', icon: '${staticRoot}/images/index/Ins_icon.png'},
|
|
|
<%--{id: 93, pid: 9, text: '菜单配置', url: '${contextRoot}/menu/initial', icon: '${staticRoot}/images/index/Ins_icon.png'},--%>
|
|
|
<%--{id: 94, pid: 9, text: '菜单按钮配置', url: '${contextRoot}/menu/menuAction/initial', icon: '${staticRoot}/images/index/Ins_icon.png'},--%>
|
|
|
{id: 95, pid: 9, text: '数据源配置', url: '${contextRoot}/datasource/configSources', icon: '${staticRoot}/images/index/Ins_icon.png'},
|
|
|
|
|
|
];
|
|
@ -161,7 +161,6 @@
|
|
|
nodeWidth: 176,
|
|
|
onSelect: function (obj) {
|
|
|
if (obj.data.url != undefined) {
|
|
|
debugger
|
|
|
if(obj.data.url.indexOf("report/signin") >= 0){
|
|
|
me.loadIframePage(obj.data.url);//质控页面
|
|
|
}else{
|
|
@ -191,14 +190,20 @@
|
|
|
var self = $(this);
|
|
|
if(!self.hasClass("l-selected")){
|
|
|
var imgSrcs = self.find("img").attr("src");
|
|
|
if(imgSrcs.indexOf("hover") > 0){
|
|
|
if(imgSrcs.indexOf("hover") > 0){
|
|
|
self.find("img").attr("src",imgSrcs.substring(0,imgSrcs.length-10)+".png");
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
onClick:function(obj){
|
|
|
|
|
|
},
|
|
|
onBeforeSelect(obj){//解决bug 3487【ESB】标准规范:点击标准规范的图标,图标会显示成白色。
|
|
|
if(obj.data == null){
|
|
|
if(obj.target.parentElement.parentElement.className.indexOf("l-selected") > 0){
|
|
|
return false;
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
//一级节点不可选中
|
|
|
onAfterAppend: function () {
|
|
@ -207,7 +212,7 @@
|
|
|
// });
|
|
|
}
|
|
|
});
|
|
|
|
|
|
|
|
|
//首页按钮
|
|
|
$('#btnIndexHome').bind('click', function () {
|
|
|
me.openHome();
|