2024-08-30 18:07:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
import { RouteRecordRaw } from "vue-router";
|
|
|
|
export const Layout = () => import("@/components/layout/layout.vue");
|
|
|
|
export const staticRouter: RouteRecordRaw[] =
|
|
|
|
[
|
|
|
|
{
|
|
|
|
path: "/",
|
2024-09-02 18:08:00 +08:00
|
|
|
name: "/",
|
|
|
|
component: Layout,
|
|
|
|
redirect: "/dashboard",
|
|
|
|
children: []
|
2024-08-29 17:06:00 +08:00
|
|
|
},
|
2024-08-30 18:07:30 +08:00
|
|
|
{
|
2024-09-02 18:08:00 +08:00
|
|
|
|
|
|
|
path: '',
|
|
|
|
name: 'dashboard',
|
|
|
|
redirect: '/index',
|
2024-08-30 18:07:30 +08:00
|
|
|
meta: {
|
|
|
|
title: '首页',
|
|
|
|
keepalive: true
|
|
|
|
},
|
|
|
|
component: Layout,
|
|
|
|
children: [
|
|
|
|
{
|
2024-09-02 18:08:00 +08:00
|
|
|
|
|
|
|
path: '/index',
|
|
|
|
name: 'index',
|
2024-08-30 18:07:30 +08:00
|
|
|
meta: {
|
|
|
|
title: '首页',
|
|
|
|
keepalive: true
|
|
|
|
},
|
|
|
|
component: () => import('@/views/dashboard/index.vue')
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
2024-09-02 18:08:00 +08:00
|
|
|
|
|
|
|
path: '',
|
2024-08-30 18:07:30 +08:00
|
|
|
name: 'register',
|
|
|
|
meta: {
|
|
|
|
title: '注册',
|
|
|
|
keepalive: true
|
|
|
|
},
|
|
|
|
component: Layout,
|
|
|
|
children: [
|
|
|
|
{
|
2024-09-02 18:08:00 +08:00
|
|
|
path: '/register', // 这里使用相对路径而不是 '/register'
|
|
|
|
name: '',
|
2024-08-30 18:07:30 +08:00
|
|
|
meta: {
|
|
|
|
title: '注册',
|
|
|
|
keepalive: true
|
|
|
|
},
|
|
|
|
component: () => import('@/views/register.vue')
|
2024-08-29 17:06:00 +08:00
|
|
|
},
|
2024-08-30 18:07:30 +08:00
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
//登录页面
|
|
|
|
path: '/login',
|
|
|
|
name: 'login',
|
|
|
|
meta: {
|
2024-09-02 18:08:00 +08:00
|
|
|
// title: '登录',
|
|
|
|
// keepalive: true
|
|
|
|
},
|
|
|
|
component: () => import('@/views/login.vue')
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
//登录页面
|
|
|
|
path: '/register-index',
|
|
|
|
name: 'register-index',
|
|
|
|
meta: {
|
|
|
|
// title: '注册',
|
2024-08-30 18:07:30 +08:00
|
|
|
},
|
|
|
|
component: () => import('@/views/register.vue')
|
|
|
|
},
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
|