修改BUG:面包导航条不正确 closed #IVCV2

#Issue
https://gitee.com/LongbowEnterprise/dashboard/issues?id=IVCV2
#Comment
jquery.dcAccordion 组件使用jquery.cookie组件对上一次导航链接地址进行了缓存
This commit is contained in:
Argo Zhang 2019-04-14 17:36:12 +08:00
parent 545ec499e7
commit a98c7dafc9
2 changed files with 4 additions and 2 deletions

View File

@ -127,7 +127,8 @@
$(function () {
var $sideMenu = $(".sidebar");
$sideMenu.dcAccordion({
autoExpand: true
autoExpand: true,
saveState: false
});
// breadcrumb

View File

@ -1,7 +1,8 @@
$(function () {
var $sideMenu = $(".sidebar");
$sideMenu.dcAccordion({
autoExpand: true
autoExpand: true,
saveState: false
});
var $breadNav = $('#breadNav');
var arch = $sideMenu.find('a.active').last();