Files
fe_service_ebtp_frontend/config/router_zjl.config.ts
2020-12-23 11:14:35 +08:00

83 lines
2.0 KiB
TypeScript

export default [
//标包划分开始
// {
// name: 'list.packageDivided',
// icon: 'crown',
// path: '/packageDivided',
// component: './packageDivided',
// },
//投标邀请
{
name:'biddingInvitation',
icon: 'crown',
path:'/biddingInvitation',
routes:[
//招标公告开始(招标公告,招标文件)
{
name: 'biddingAnnouncement',
icon: 'crown',
path: '/biddingInvitation/biddingAnnouncement',
component: './Bid/BiddingAnnouncement',
},
//应答格式开始
{
name: 'responseFormat',
icon: 'crown',
path: '/biddingInvitation/responseFormat',
component: './Bid/ResponseFormat',
},
]
},
//项目归档
{
name:'archive',
icon: 'crown',
path:'/projectArchive',
component: './Archive/ProjectArchive',
},
//主页-标段列表(项目经理)
{
name:'homePageManager',
icon: 'crown',
path:'/projectManager/homePageSectionList',
component: './Project/ProjectManage/ProjectManager/HomePageSectionList',
},
//主页-标段列表(供应商)
{
name:'homePageSupplier',
icon: 'crown',
path:'/supplier/homePageSectionList',
component: './Project/ProjectManage/Supplier/HomePageSectionList',
},
//供应商信息管理
{
name:'supplierInformation',
icon: 'crown',
path:'/supplierInformation',
routes:[
//常用联系人管理
{
name: 'commonContact',
icon: 'crown',
path: '/supplierInformation/commonContact',
component: './CommonInfo/Supplier/CommonContact',
},
//邮寄地址管理
{
name: 'mailingAddress',
icon: 'crown',
path: '/supplierInformation/mailingAddress',
component: './CommonInfo/Supplier/MailingAddress',
},
//发票信息管理
{
name: 'invoiceInformation',
icon: 'crown',
path: '/supplierInformation/invoiceInformation',
component: './CommonInfo/Supplier/InvoiceInformation',
},
]
},
]