[debug] 修复同名菜单hash不切换问题

This commit is contained in:
邹景立 2017-03-15 11:57:06 +08:00
parent 4aa216baca
commit 5d0dcd2bf7
2 changed files with 5 additions and 3 deletions

View File

@ -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初始化动作

View File

@ -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);
}; };
/** /**