mirror of https://gitee.com/y_project/RuoYi.git
修复context-path的情况下个人中心刷新导致样式问题
parent
2a718ba4d6
commit
4f57c28f2f
|
@ -258,8 +258,6 @@ var skin = storage.get("skin");
|
|||
var mode = "history";
|
||||
// 历史访问路径缓存
|
||||
var historyPath = storage.get("historyPath");
|
||||
// 排除非左侧菜单链接
|
||||
var excludesUrl = ["/system/user/profile"];
|
||||
|
||||
// 本地主题优先,未设置取系统配置
|
||||
if($.common.isNotEmpty(skin)){
|
||||
|
@ -289,9 +287,7 @@ function switchSkin() {
|
|||
/** 刷新时访问路径页签 */
|
||||
function applyPath(url) {
|
||||
$('a[href$="' + decodeURI(url) + '"]').click();
|
||||
if($.inArray(url, excludesUrl)){
|
||||
$('a[href$="' + url + '"]').parent("li").addClass("selected").parents("li").addClass("active").end().parents("ul").addClass("in");
|
||||
}
|
||||
$('a[href$="' + url + '"]').parent("li").addClass("selected").parents("li :not(.user-panel)").addClass("active").end().parents("ul").addClass("in");
|
||||
}
|
||||
|
||||
$(function() {
|
||||
|
|
Loading…
Reference in New Issue