cloudMenu/config/router.ts
ylj20011123 4dee3cbed6 update
2025-12-17 18:13:53 +08:00

93 lines
2.9 KiB
TypeScript

// 路由配置文件
export default [
{
path: '/',
routes: [
{
path: '/test/index',
name: '测试页面',
component: "@/pages/test/index",
},
{
path: '/Invoicing/index',
name: '开票管理',
component: "@/pages/Invoicing/index",
},
{
path: '/DigitalElectronics/index',
name: '开票管理',
component: "@/pages/DigitalElectronics/index",
},
{
path: '/redReversal/index',
name: '红冲管理',
component: "@/pages/redReversal/index",
},
{
path: '/InvoiceInquiry/index',
name: '开票查询',
component: "@/pages/InvoiceInquiry/index",
},
{
path: '/InvoiceSearch/index',
name: '开票查询',
component: "@/pages/InvoiceSearch/index",
},
{
path: '/serverpartAssets/index',
name: '服务区资产管理',
component: "@/pages/serverpartAssets/index",
},
{
path: '/operationReport/index',
name: '运营报表',
component: "@/pages/operationReport/index",
},
{
path: '/operationReport/routineInspection',
name: '日常检查记录表',
component: "@/pages/operationReport/routineInspection",
},
{
path: '/operationReport/onSiteInspection',
name: '现场检查记录表',
component: "@/pages/operationReport/onSiteInspection",
},
{
path: '/operationReport/securityIssueList',
name: '安全问题记录表',
component: "@/pages/operationReport/securityIssueList",
},
{
path: '/operationReport/rectificationStatus',
name: '整改情况追踪表',
component: "@/pages/operationReport/rectificationStatus",
},
{
path: '/RentCalculation/index',
name: '租金测算',
component: "@/pages/RentCalculation/index",
},
{
path: '/rentComparison/index',
name: '租金对比',
component: "@/pages/rentComparison/index",
},
{
path: '/realEstate/index',
name: '不动产管理',
component: "@/pages/realEstate/index",
},
{
path: '/ComplaintApproval/index',
name: '投诉审批',
component: "@/pages/ComplaintApproval/index",
},
]
}
]