31 lines
769 B
TypeScript
31 lines
769 B
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: '/InvoiceSearch/index',
|
|
name: '开票查询',
|
|
component: "@/pages/InvoiceSearch/index",
|
|
}
|
|
]
|
|
}
|
|
|
|
]
|
|
|