Files
jyls_front/src/router/index.ts
2025-12-05 13:55:38 +08:00

297 lines
6.6 KiB
TypeScript

import type { App } from "vue";
import { createRouter, createWebHashHistory, type RouteRecordRaw } from "vue-router";
export const Layout = () => import("@/layouts/index.vue");
// 静态路由
export const constantRoutes: RouteRecordRaw[] = [
{
path: "/login",
component: () => import("@/views/login/index.vue"),
meta: { hidden: true },
},
{
path: "/",
name: "/",
component: Layout,
redirect: "/dashboard",
children: [
{
path: "dashboard",
component: () => import("@/views/dashboard/index.vue"),
// 用于 keep-alive 功能,需要与 SFC 中自动推导或显式声明的组件名称一致
// 参考文档: https://cn.vuejs.org/guide/built-ins/keep-alive.html#include-exclude
name: "Dashboard",
meta: {
title: "dashboard",
icon: "homepage",
affix: true,
keepAlive: true,
},
},
{
path: "401",
component: () => import("@/views/error/401.vue"),
meta: { hidden: true },
},
{
path: "404",
component: () => import("@/views/error/404.vue"),
meta: { hidden: true },
},
{
path: "profile",
name: "Profile",
component: () => import("@/views/profile/index.vue"),
meta: { title: "个人中心", icon: "user", hidden: true },
},
{
path: "my-notice",
name: "MyNotice",
component: () => import("@/views/system/notice/components/MyNotice.vue"),
meta: { title: "我的通知", icon: "user", hidden: true },
},
{
path: "/detail/:id(\\d+)",
name: "DemoDetail",
component: () => import("@/views/demo/detail.vue"),
meta: { title: "详情页缓存", icon: "user", hidden: true, keepAlive: true },
},
],
},
// 人员管理模块
{
path: "/personnel",
component: Layout,
name: "Personnel",
meta: {
title: "人员管理",
icon: "setting",
},
children: [
{
path: "user",
name: "PersonnelUser",
component: () => import("@/views/system/user/index.vue"),
meta: {
title: "人事管理",
},
},
{
path: "role",
name: "PersonnelRole",
component: () => import("@/views/system/role/index.vue"),
meta: {
title: "角色管理",
},
},
],
},
// 财务管理模块
{
path: "/finance",
component: Layout,
name: "Finance",
meta: {
title: "财务管理",
icon: "setting",
},
children: [
{
path: "user",
name: "FinanceUser",
component: () => import("@/views/system/user/index.vue"),
meta: {
title: "人事管理",
},
},
{
path: "role",
name: "FinanceRole",
component: () => import("@/views/system/role/index.vue"),
meta: {
title: "角色管理",
},
},
],
},
// 业务管理模块
{
path: "/business",
component: Layout,
name: "Business",
meta: {
title: "业务管理",
icon: "setting",
},
children: [
{
path: "user",
name: "BusinessConflict",
component: () => import("@/views/business/conflict/index.vue"),
meta: {
title: "利益冲突检索",
},
},
{
path: "role",
name: "BusinessPreRegistration",
component: () => import("@/views/business/preRegistration/index.vue"),
meta: {
title: "预立案登记",
},
},
],
},
// 案件管理模块
{
path: "/case",
component: Layout,
name: "Case",
meta: {
title: "案件管理",
icon: "setting",
},
children: [
{
path: "user",
name: "CaseUser",
component: () => import("@/views/system/user/index.vue"),
meta: {
title: "人事管理",
},
},
{
path: "role",
name: "CaseRole",
component: () => import("@/views/system/role/index.vue"),
meta: {
title: "角色管理",
},
},
],
},
// 申请用印
{
path: "/stamp",
name: "StampApplication",
component: Layout,
meta: {
title: "申请用印",
icon: "setting",
},
redirect: "/stamp/index",
children: [
{
path: "index",
name: "StampApplicationIndex",
component: () => import("@/views/stamp-application/index.vue"),
meta: {
title: "申请用印",
},
},
],
},
// 业绩
{
path: "/performance",
name: "StampPerformance",
component: Layout,
meta: {
title: "业绩展示",
icon: "setting",
},
redirect: "/performance/index",
children: [
{
path: "index",
name: "StampPerformanceIndex",
component: () => import("@/views/stamp-application/index.vue"),
meta: {
title: "业绩展示",
},
},
],
},
// 入库登记
{
path: "/registration",
name: "Registration",
component: Layout,
meta: {
title: "入库登记",
icon: "setting",
},
redirect: "/registration/index",
children: [
{
path: "index",
name: "RegistrationIndex",
component: () => import("@/views/stamp-application/index.vue"),
meta: {
title: "入库登记",
},
},
],
},
// 公告
{
path: "/notice",
name: "Notice",
component: Layout,
meta: {
title: "公告管理",
icon: "setting",
},
redirect: "/notice/index",
children: [
{
path: "index",
name: "NoticeIndex",
component: () => import("@/views/stamp-application/index.vue"),
meta: {
title: "公告管理",
},
},
],
},
// 律所标准文件
{
path: "/lawyer-file",
name: "LawyerFile",
component: Layout,
meta: {
title: "律所标准文件",
icon: "setting",
},
redirect: "/lawyer-file/index",
children: [
{
path: "index",
name: "LawyerFileIndex",
component: () => import("@/views/stamp-application/index.vue"),
meta: {
title: "律所标准文件",
},
},
],
},
];
/**
* 创建路由
*/
const router = createRouter({
history: createWebHashHistory(),
routes: constantRoutes,
// 刷新时,滚动条位置还原
scrollBehavior: () => ({ left: 0, top: 0 }),
});
// 全局注册 router
export function setupRouter(app: App<Element>) {
app.use(router);
}
export default router;