zhangwei
2025-06-25 ce5e84197b43dec8c01717b116cb77535ad3c91e
src/router/modules/remaining.ts
@@ -2,6 +2,26 @@
export default [
  {
    path: "/",
    name: "Main",
    redirect: "/home",
    meta: {
      title: "首页",
      showLink: false,
      rank: 101
    }
  },
  {
    path: "/home",
    name: "Home",
    component: () => import("@/views/home/index.vue"),
    meta: {
      title: "首页",
      showLink: false,
      rank: 101
    }
  },
  {
    path: "/login",
    name: "Login",
    component: () => import("@/views/login/index.vue"),
@@ -12,13 +32,23 @@
    }
  },
  {
    path: "/",
    name: "Home",
    component: () => import("@/views/home/index.vue"),
    path: "/register",
    name: "Register",
    component: () => import("@/views/register/index.vue"),
    meta: {
      title: "首页",
      title: "注册",
      showLink: false,
      rank: 101
      rank: 104
    }
  },
  {
    path: "/registersucess",
    name: "RegisterSucess",
    component: () => import("@/views/register/registersucess.vue"),
    meta: {
      title: "注册成功",
      showLink: false,
      rank: 103
    }
  },
  {