diff --git a/CHANGELOG.zh_CN.md b/CHANGELOG.zh_CN.md index c4415288..6b9b3837 100644 --- a/CHANGELOG.zh_CN.md +++ b/CHANGELOG.zh_CN.md @@ -1,3 +1,8 @@ +### 🐛 Bug Fixes + +- **Table** 修复滚动条样式问题 +- **其它** 修复菜单默认折叠的配置不起作用的问题 + ## 2.6.0(2021-07-04) ### ✨ Features diff --git a/mock/sys/menu.ts b/mock/sys/menu.ts index bc7bfe02..37db362c 100644 --- a/mock/sys/menu.ts +++ b/mock/sys/menu.ts @@ -128,6 +128,18 @@ const sysRoute = { }, component: '/demo/system/account/index', }, + { + path: 'account_detail/:id', + name: 'AccountDetail', + meta: { + hideMenu: true, + title: 'routes.demo.system.account_detail', + ignoreKeepAlive: true, + showMenu: false, + currentActiveMenu: '/system/account', + }, + component: '/demo/system/account/AccountDetail', + }, { path: 'role', name: 'RoleManagement',