mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[debug] 修复同名菜单hash不切换问题
This commit is contained in:
parent
4aa216baca
commit
5d0dcd2bf7
@ -38,7 +38,7 @@ define(['jquery', 'admin.plugs'], function () {
|
|||||||
/*! 注册 data-open 事件行为 */
|
/*! 注册 data-open 事件行为 */
|
||||||
this.$body.on('click', '[data-open]', function () {
|
this.$body.on('click', '[data-open]', function () {
|
||||||
var url = $(this).attr('data-open');
|
var url = $(this).attr('data-open');
|
||||||
$.form.href(url);
|
$.form.href(url, this);
|
||||||
});
|
});
|
||||||
|
|
||||||
/*! 注册 data-reload 事件行为 */
|
/*! 注册 data-reload 事件行为 */
|
||||||
@ -263,6 +263,7 @@ define(['jquery', 'admin.plugs'], function () {
|
|||||||
$('.framework-container').removeClass('framework-sidebar-full');
|
$('.framework-container').removeClass('framework-sidebar-full');
|
||||||
}
|
}
|
||||||
/* 加载资源 */
|
/* 加载资源 */
|
||||||
|
console.log(hash);
|
||||||
$.form.open(hash);
|
$.form.open(hash);
|
||||||
};
|
};
|
||||||
// URI初始化动作
|
// URI初始化动作
|
||||||
|
@ -324,9 +324,10 @@ define(['zeroclipboard', 'jquery'], function (ZeroClipboard) {
|
|||||||
/**
|
/**
|
||||||
* 打开一个内置HTML页面
|
* 打开一个内置HTML页面
|
||||||
* @param url
|
* @param url
|
||||||
|
* @param obj
|
||||||
*/
|
*/
|
||||||
_form.prototype.href = function (url) {
|
_form.prototype.href = function (url, obj) {
|
||||||
window.location.href = '#' + parseUri(url);
|
window.location.href = '#' + parseUri(url, obj);
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user