64 lines
2.1 KiB
TypeScript
64 lines
2.1 KiB
TypeScript
import bid from './router_menucBid.config';
|
|
import tender from './router_menudTender.config';
|
|
import open from './router_menueOpening.config';
|
|
import evaluation from './router_menufEvaluation.config';
|
|
import calibration from './router_menugCalibration.config';
|
|
import archive from './router_menuhArchive.config';
|
|
import yuShen from '../YuShen/router_yushen';
|
|
import tanpan from '../TanPan/router_tanpan';
|
|
import xunjia from '../XunJia/router_xunjia';
|
|
import bixuan from '../BiXuan/router_bixuan';
|
|
import zhaomu from '../ZhaoMu/router_zhaomu';
|
|
import neipai from '../NeiPai/router_neipai';
|
|
export default [
|
|
//项目信息
|
|
{
|
|
name: 'list.ProjectInformationManagement',
|
|
path: '/Project/ProjectManage/ProjectManager/ProjectInformationManagement',
|
|
component: './Project/ProjectManage/ProjectManager/ProjectInformationManagement',
|
|
hideInMenu: true
|
|
},
|
|
// 异议投诉-项目经理
|
|
{
|
|
name: 'list.ProjectComplaint',
|
|
path: '/Project/ProjectManage/ProjectManager/ObjectionComplaint',
|
|
component: './Project/ProjectManage/ProjectManager/ObjectionComplaint',
|
|
hideInMenu: true
|
|
},
|
|
// 异议投诉-供应商
|
|
{
|
|
name: 'list.ProjectComplaint',
|
|
path: '/Project/ProjectManage/Supplier/ObjectionComplaint',
|
|
component: './Project/ProjectManage/Supplier/ObjectionComplaint',
|
|
hideInMenu: true
|
|
},
|
|
{//项目布局
|
|
path: '/ProjectLayout',
|
|
component: '../layouts/CosMenuLayout',
|
|
routes: [
|
|
//主页-标段列表(项目经理)
|
|
{
|
|
path: '/ProjectLayout/Manager/HomePageSectionList',
|
|
component: './Project/ProjectManage/ProjectManager/HomePageSectionList',
|
|
},
|
|
//主页-标段列表(供应商)
|
|
{
|
|
path: '/ProjectLayout/Supplier/HomePageSectionList',
|
|
component: './Project/ProjectManage/Supplier/HomePageSectionList',
|
|
},
|
|
...bid,
|
|
...tender,
|
|
...open,
|
|
...evaluation,
|
|
...calibration,
|
|
...archive,
|
|
...yuShen,
|
|
...tanpan,//谈判项目
|
|
...xunjia,//询价项目
|
|
...bixuan,//比选项目
|
|
...zhaomu,//招募项目
|
|
...neipai,//内拍项目
|
|
],
|
|
},
|
|
];
|