Commit 993e19dcc319e2b4c68df2ab76174b7b4d7b0428
1 parent
808291b5
fix(demo): add mock data `account detail` route
添加mock数据中缺失的账号详情路由 fixed: #858
Showing
2 changed files
with
17 additions
and
0 deletions
CHANGELOG.zh_CN.md
mock/sys/menu.ts
... | ... | @@ -129,6 +129,18 @@ const sysRoute = { |
129 | 129 | component: '/demo/system/account/index', |
130 | 130 | }, |
131 | 131 | { |
132 | + path: 'account_detail/:id', | |
133 | + name: 'AccountDetail', | |
134 | + meta: { | |
135 | + hideMenu: true, | |
136 | + title: 'routes.demo.system.account_detail', | |
137 | + ignoreKeepAlive: true, | |
138 | + showMenu: false, | |
139 | + currentActiveMenu: '/system/account', | |
140 | + }, | |
141 | + component: '/demo/system/account/AccountDetail', | |
142 | + }, | |
143 | + { | |
132 | 144 | path: 'role', |
133 | 145 | name: 'RoleManagement', |
134 | 146 | meta: { | ... | ... |