|
|
@@ -24,12 +24,12 @@ export const constantRoutes = [
|
|
|
},
|
|
|
{
|
|
|
path: '/404',
|
|
|
- component: () => import('@/views/error-page/404'),
|
|
|
+ component: () => import('@/views/errors/404'),
|
|
|
hidden: true
|
|
|
},
|
|
|
{
|
|
|
path: '/401',
|
|
|
- component: () => import('@/views/error-page/401'),
|
|
|
+ component: () => import('@/views/errors/401'),
|
|
|
hidden: true
|
|
|
},
|
|
|
{
|
|
|
@@ -133,13 +133,13 @@ export const asyncRoutes = [
|
|
|
children: [
|
|
|
{
|
|
|
path: '401',
|
|
|
- component: () => import('@/views/error-page/401'),
|
|
|
+ component: () => import('@/views/errors/401'),
|
|
|
name: 'Page401',
|
|
|
meta: { title: '401', noCache: true }
|
|
|
},
|
|
|
{
|
|
|
path: '404',
|
|
|
- component: () => import('@/views/error-page/404'),
|
|
|
+ component: () => import('@/views/errors/404'),
|
|
|
name: 'Page404',
|
|
|
meta: { title: '404', noCache: true }
|
|
|
}
|