78 lines
2.4 KiB
TypeScript
78 lines
2.4 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",
|
|
},
|
|
|
|
|
|
]
|
|
}
|
|
|
|
]
|
|
|