Commit 0c689478 authored by 前端-许佳敏's avatar 前端-许佳敏

fix: 添加首页code

parent 3640a15a
...@@ -13,6 +13,7 @@ const router = [ ...@@ -13,6 +13,7 @@ const router = [
routes: [ routes: [
{ {
path: '/', path: '/',
relationParentCode: 'home',
redirect: '/memberCenter/home' redirect: '/memberCenter/home'
}, },
{ {
......
...@@ -76,12 +76,6 @@ export function patchRoutes({ routes }: IRoutes) { ...@@ -76,12 +76,6 @@ export function patchRoutes({ routes }: IRoutes) {
export function render(oldRender: Function) { export function render(oldRender: Function) {
const { pathname } = history.location const { pathname } = history.location
// fix: 直接进入根路由导致无法访问后台首页
if (pathname === '/') {
history.replace('/memberCenter/home')
return;
}
// 白名单页面不进行权限校验 // 白名单页面不进行权限校验
if (whiteLists.includes(pathname)) { if (whiteLists.includes(pathname)) {
oldRender() oldRender()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment