From 3ee82df09094d58d86f456dd8edaab41ecbb0fec Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 14 Apr 2022 13:12:57 +0800 Subject: [PATCH] Update admin.js --- public/static/admin.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/static/admin.js b/public/static/admin.js index 5e5a92c80..57d5439f5 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -304,11 +304,11 @@ $(function () { }); }; /*! 以 HASH 打开新网页 */ - this.href = function (url, ele) { - // 重置表格页数缓存 - if (ele && ele.dataset.menuNode) layui.sessionData('pages', null); - if (url !== '#') location.hash = $.menu.parseUri(url, ele); - else if (ele && ele.dataset.menuNode) $('[data-menu-node^="' + ele.dataset.menuNode + '-"]:first').trigger('click'); + this.href = function (url, elem) { + this.isMenu = elem && elem.dataset.menuNode; + if (this.isMenu) layui.sessionData('pages', null); + if (url !== '#') return location.hash = $.menu.parseUri(url, elem); + if (this.isMenu) return $('[data-menu-node^="' + elem.dataset.menuNode + '-"]:first').trigger('click'); }; /*! 加载 HTML 到 BODY 位置 */ this.open = function (url, data, call, load, tips) {