项目微调
优化封装的路由菜单
This commit is contained in:
@@ -32,7 +32,9 @@ const routerMode = {
|
|||||||
const router = createRouter({
|
const router = createRouter({
|
||||||
history: routerMode[mode](),
|
history: routerMode[mode](),
|
||||||
routes: [...staticRouter, ...errorRouter],
|
routes: [...staticRouter, ...errorRouter],
|
||||||
|
// 不区分路由大小写,非严格模式下提供了更宽松的路径匹配
|
||||||
strict: false,
|
strict: false,
|
||||||
|
// 页面刷新时,滚动条位置还原
|
||||||
scrollBehavior: () => ({ left: 0, top: 0 })
|
scrollBehavior: () => ({ left: 0, top: 0 })
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { RouteRecordRaw } from "vue-router";
|
import { RouteRecordRaw } from "vue-router";
|
||||||
import { HOME_URL, LOGIN_URL } from "@/config";
|
import { HOME_URL, LOGIN_URL } from "@/config";
|
||||||
|
export const Layout = () => import('@/layouts/index.vue');
|
||||||
/**
|
/**
|
||||||
* staticRouter (静态路由)
|
* staticRouter (静态路由)
|
||||||
*/
|
*/
|
||||||
@@ -20,9 +20,7 @@ export const staticRouter: RouteRecordRaw[] = [
|
|||||||
{
|
{
|
||||||
path: "/layout",
|
path: "/layout",
|
||||||
name: "layout",
|
name: "layout",
|
||||||
component: () => import("@/layouts/index.vue"),
|
component: Layout,
|
||||||
// component: () => import("@/layouts/indexAsync.vue"),
|
|
||||||
// redirect: HOME_URL,
|
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: "/plan",
|
path: "/plan",
|
||||||
@@ -53,6 +51,11 @@ export const staticRouter: RouteRecordRaw[] = [
|
|||||||
* errorRouter (错误页面路由)
|
* errorRouter (错误页面路由)
|
||||||
*/
|
*/
|
||||||
export const errorRouter = [
|
export const errorRouter = [
|
||||||
|
{
|
||||||
|
path: "/layout",
|
||||||
|
name: "layout",
|
||||||
|
component: Layout,
|
||||||
|
children: [
|
||||||
{
|
{
|
||||||
path: "/403",
|
path: "/403",
|
||||||
name: "403",
|
name: "403",
|
||||||
@@ -82,4 +85,6 @@ export const errorRouter = [
|
|||||||
path: "/:pathMatch(.*)*",
|
path: "/:pathMatch(.*)*",
|
||||||
component: () => import("@/components/ErrorMessage/404.vue"),
|
component: () => import("@/components/ErrorMessage/404.vue"),
|
||||||
},
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
export type LayoutType = "vertical" | "classic" | "transverse" | "columns";
|
export type LayoutType = 'vertical' | 'classic' | 'transverse' | 'columns';
|
||||||
|
|
||||||
export type AssemblySizeType = "large" | "default" | "small";
|
export type AssemblySizeType = 'large' | 'default' | 'small';
|
||||||
|
|
||||||
export type LanguageType = "zh" | "en" | null;
|
export type LanguageType = 'zh' | 'en' | null;
|
||||||
|
|
||||||
/* GlobalState */
|
/* GlobalState */
|
||||||
export interface GlobalState {
|
export interface GlobalState {
|
||||||
@@ -53,6 +53,7 @@ export interface AuthState {
|
|||||||
[key: string]: string[];
|
[key: string]: string[];
|
||||||
};
|
};
|
||||||
authMenuList: Menu.MenuOptions[];
|
authMenuList: Menu.MenuOptions[];
|
||||||
|
showMenuFlag: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* KeepAliveState */
|
/* KeepAliveState */
|
||||||
|
|||||||
Reference in New Issue
Block a user