import { createWebHistory, createRouter } from "vue-router"; /* Layout */ import Layout from "@/layout"; /** * Note: 路由配置项 * * hidden: true // 当设置 true 的时候该路由不会再侧边栏出现 如401,login等页面,或者如一些编辑页面/edit/1 * alwaysShow: true // 当你一个路由下面的 children 声明的路由大于1个时,自动会变成嵌套的模式--如组件页面 * // 只有一个时,会将那个子路由当做根路由显示在侧边栏--如引导页面 * // 若你想不管路由下面的 children 声明的个数都显示你的根路由 * // 你可以设置 alwaysShow: true,这样它就会忽略之前定义的规则,一直显示根路由 * redirect: noRedirect // 当设置 noRedirect 的时候该路由在面包屑导航中不可被点击 * name:'router-name' // 设定路由的名字,一定要填写不然使用时会出现各种问题 * query: '{"id": 1, "name": "ry"}' // 访问路由的默认传递参数 * roles: ['admin', 'common'] // 访问路由的角色权限 * permissions: ['a:a:a', 'b:b:b'] // 访问路由的菜单权限 * meta : { noCache: true // 如果设置为true,则不会被 缓存(默认 false) title: 'title' // 设置该路由在侧边栏和面包屑中展示的名字 icon: 'svg-name' // 设置该路由的图标,对应路径src/assets/icons/svg breadcrumb: false // 如果设置为false,则不会在breadcrumb面包屑中显示 activeMenu: '/system/user' // 当路由设置了该属性,则会高亮相对应的侧边栏。 } */ // 公共路由 export const constantRoutes = [ { path: "/redirect", component: Layout, hidden: true, children: [ { path: "/redirect/:path(.*)", component: () => import("@/views/redirect/index.vue"), }, ], }, { path: "/login", component: () => import("@/views/login"), hidden: true, }, { path: "/register", component: () => import("@/views/register"), hidden: true, }, { path: "/:pathMatch(.*)*", component: () => import("@/views/error/404"), hidden: true, }, { path: "/401", component: () => import("@/views/error/401"), hidden: true, }, // { // path: "", // component: Layout, // redirect: "/index", // children: [ // { // path: "/index", // component: () => import("@/views/index"), // name: "Index", // meta: { title: "首页", icon: "dashboard", affix: true }, // }, // ], // }, // 物业模块START { path: "", component: Layout, redirect: "/index", children: [ { path: "/Tenement/enterpriseManagement", component: () => import("@/views/Tenement/EnterpriseManagement/index.vue"), name: "EnterpriseManagement", meta: { title: "单位与账号管理", icon: "table" }, }, { path: "/Tenement/newEnterprise", hidden: true, component: () => import("@/views/Tenement/EnterpriseManagement/NewEnterprise.vue"), name: "NewEnterprise", meta: { title: "新增单位建档", breadcrumb: false }, }, { path: "/Tenement/accountManagement", hidden: true, component: () => import("@/views/Tenement/EnterpriseManagement/AccountManagement.vue"), name: "AccountManagement", meta: { title: "账号管理", breadcrumb: false }, }, ], }, { path: "", component: Layout, redirect: "/index", meta: { title: "移动球机管控", icon: "table" }, children: [ { path: "/Tenement/StandingBook", component: () => import("@/views/Tenement/BallheadCamera/StandingBook.vue"), name: "StandingBook", meta: { title: "球机台账", icon: "table" }, }, { path: "/Tenement/HighRiskProject", component: () => import("@/views/Tenement/BallheadCamera/HighRiskProject.vue"), name: "HighRiskProject", meta: { title: "高风险项目球机分配", icon: "table" }, }, { path: "/Tenement/ReturnToInventory", component: () => import("@/views/Tenement/BallheadCamera/ReturnToInventory.vue"), name: "ReturnToInventory", meta: { title: "球机回收入库", icon: "table" }, }, { path: "/Tenement/InventoryAudit", component: () => import("@/views/Tenement/BallheadCamera/InventoryAudit.vue"), name: "InventoryAudit", meta: { title: "入库审核", icon: "table" }, }, ], }, { path: "", component: Layout, redirect: "/index", children: [ { path: "/Tenement/FinishedProject", component: () => import("@/views/Tenement/FinishedProject/index.vue"), name: "FinishedProject", meta: { title: "项目完工复核管理", icon: "table" }, }, { path: "/Tenement/FinishedProject/particulars", component: () => import("@/views/Tenement/FinishedProject/particulars.vue"), name: "FinishedProjectParticulars", hidden: true, meta: { title: "项目完工复核详情", icon: "table", breadcrumb: false, }, }, ], }, { path: "/Tenement/SystemSettings", component: Layout, redirect: "/Tenement/SystemSettings/PropertyPermission", meta: { title: "系统设置", icon: "table" }, children: [ { path: "PropertyPermission", component: () => import("@/views/Tenement/SystemSettings/PropertyPermission.vue"), name: "PropertyPermission", meta: { title: "权限配置", icon: "table" }, }, ], }, { path: "", component: Layout, redirect: "/index", children: [ { path: "/Tenement/PropertyPersonalCenter", component: () => import("@/views/Tenement/SystemSettings/PropertyPersonalCenter.vue"), name: "PropertyPersonalCenter", meta: { title: "个人中心(物业)", icon: "table" }, }, ], }, // 物业模块END // 业主模块START { path: "", component: Layout, redirect: "/index", children: [ { path: "/proprietor/SignerManagement", component: () => import("@/views/proprietor/SignerManagement/index.vue"), name: "SignerManagement", meta: { title: "签发人管理", icon: "table" }, }, ], }, { path: "", component: Layout, redirect: "/index", children: [ { path: "/proprietor/TicketIssueAudit", component: () => import("@/views/proprietor/TicketIssueAudit/index.vue"), name: "TicketIssueAudit", meta: { title: "工作票签发审核", icon: "table" }, }, { path: "/proprietor/TicketIssueAudit/Detail", component: () => import("@/views/proprietor/TicketIssueAudit/Detail.vue"), name: "TicketIssueAuditDetail", hidden: true, meta: { title: "工作票签发审核详情", icon: "table" }, }, ], }, { path: "", component: Layout, redirect: "/index", children: [ { path: "/proprietor/EntryExitPermitIssue", component: () => import("@/views/proprietor/EntryExitPermitIssue/index.vue"), name: "EntryExitPermitIssue", meta: { title: "出入证签发", icon: "table" }, }, ], }, { path: "", component: Layout, redirect: "/index", children: [ { path: "/proprietor/ProjectOverview", component: () => import("@/views/proprietor/ProjectOverview/index.vue"), name: "ProjectOverview", meta: { title: "项目总览", icon: "table" }, }, ], }, { path: "", component: Layout, redirect: "/index", children: [ { path: "/proprietor/OwnerPersonalCenter", component: () => import("@/views/proprietor/OwnerPersonalCenter/index.vue"), name: "OwnerPersonalCenter", meta: { title: "个人中心(业主)", icon: "table" }, }, ], }, // 业主模块END // 后勤模块START { path: "", component: Layout, redirect: "/index", children: [ { path: "/logistics/TreeRatingManagement", component: () => import("@/views/Logistics/TreeRatingManagement/index.vue"), name: "TreeRatingManagement", meta: { title: "树形层级管理", icon: "table" }, }, ], }, { path: "", component: Layout, redirect: "/index", children: [ { path: "/logistics/FilingReview", component: () => import("@/views/Logistics/FilingReview/index.vue"), name: "FilingReview", meta: { title: "建档审核中心", icon: "table" }, }, ], }, { path: "", component: Layout, redirect: "/index", children: [ { path: "/logistics/UserManagement", component: () => import("@/views/Logistics/UserManagement/index.vue"), name: "UserManagement", meta: { title: "账户管理", icon: "table" }, }, ], }, { path: "", component: Layout, redirect: "/index", children: [ { path: "/logistics/UserReview", component: () => import("@/views/Logistics/UserReview/index.vue"), name: "UserReview", meta: { title: "账户审核", icon: "table" }, }, ], }, { path: "", component: Layout, redirect: "/index", children: [ { path: "/logistics/RiskManagement", component: () => import("@/views/Logistics/RiskManagement/index.vue"), name: "RiskManagement", meta: { title: "风险管控卡配置", icon: "table" }, }, { path: "/logistics/RiskManagement/Details", component: () => import("@/views/Logistics/RiskManagement/Details/index.vue"), name: "RiskManagementDetails", hidden: true, meta: { title: "风险管控卡配置详情", icon: "table" }, }, ], }, { path: "", component: Layout, redirect: "/index", children: [ { path: "/logistics/ProjectOverviewQuery", component: () => import("@/views/Logistics/ProjectOverviewQuery/index.vue"), name: "ProjectOverviewQuery", meta: { title: "项目总览查询", icon: "table" }, }, ], }, { path: "", component: Layout, redirect: "/index", children: [ { path: "/logistics/logisticsPersonalCenter", component: () => import("@/views/Logistics/logisticsPersonalCenter/index.vue"), name: " logisticsPersonalCenter", meta: { title: "个人中心(后勤)", icon: "table" }, }, ], }, // 后勤模块END { path: "/user", component: Layout, hidden: true, redirect: "noredirect", children: [ { path: "profile/:activeTab?", component: () => import("@/views/system/user/profile/index"), name: "Profile", meta: { title: "个人中心", icon: "user" }, }, ], }, ]; // 动态路由,基于用户权限动态去加载 export const dynamicRoutes = [ { path: "/system/user-auth", component: Layout, hidden: true, permissions: ["system:user:edit"], children: [ { path: "role/:userId(\\d+)", component: () => import("@/views/system/user/authRole"), name: "AuthRole", meta: { title: "分配角色", activeMenu: "/system/user" }, }, ], }, { path: "/system/role-auth", component: Layout, hidden: true, permissions: ["system:role:edit"], children: [ { path: "user/:roleId(\\d+)", component: () => import("@/views/system/role/authUser"), name: "AuthUser", meta: { title: "分配用户", activeMenu: "/system/role" }, }, ], }, { path: "/system/dict-data", component: Layout, hidden: true, permissions: ["system:dict:list"], children: [ { path: "index/:dictId(\\d+)", component: () => import("@/views/system/dict/data"), name: "Data", meta: { title: "字典数据", activeMenu: "/system/dict" }, }, ], }, { path: "/monitor/job-log", component: Layout, hidden: true, permissions: ["monitor:job:list"], children: [ { path: "index/:jobId(\\d+)", component: () => import("@/views/monitor/job/log"), name: "JobLog", meta: { title: "调度日志", activeMenu: "/monitor/job" }, }, ], }, { path: "/tool/gen-edit", component: Layout, hidden: true, permissions: ["tool:gen:edit"], children: [ { path: "index/:tableId(\\d+)", component: () => import("@/views/tool/gen/editTable"), name: "GenEdit", meta: { title: "修改生成配置", activeMenu: "/tool/gen" }, }, ], }, ]; const router = createRouter({ history: createWebHistory(), routes: constantRoutes, scrollBehavior(to, from, savedPosition) { if (savedPosition) { return savedPosition; } return { top: 0 }; }, }); export default router;