Merge branch '20230413-高质量运营' into 'release_20230512'

5.11 高质量运营

See merge request eshop/fe_service_ebtp_frontend!237
This commit is contained in:
jl-zhoujl2
2023-05-11 02:09:52 +00:00
55 changed files with 4385 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import home from './HomePage/router_home';
import juryRoom from './JuryRoom/router_menuJury.config';
import approvalForm from './router_approval_form';
import partyMemberTopic from './router_partyMemberTopic';
import highQualityOperation from './router_highQualityOperation';
import { elecBidEvaluation, monitor, monitorScreen } from './router_elecEvaluation';
export default [
//========================================================================登陆
@ -12,6 +13,8 @@ export default [
...approvalForm,
//党建攻坚
...partyMemberTopic,
//高质量运营
...highQualityOperation,
//电子评标室-监控大屏
...monitorScreen,
...monitor,

View File

@ -0,0 +1,53 @@
export default [
{
name: '高质量运营',
path: '/highQualityOperation',
routes: [
{ //首页
name: 'home',
path: '/highQualityOperation/home',
component: './HighQualityOperation/Home',
},
{ //物资采购与管理专业线 党支部 省分
name: 'partyBranch',
path: '/highQualityOperation/partyBranch',
component: './HighQualityOperation/PartyBranch',
},
{ //物资采购与管理专业线 党支部数据
name: 'partyBranches',
path: '/highQualityOperation/partyBranches',
component: './HighQualityOperation/PartyBranches',
},
{ //物资采购与管理专业线 党支部人员信息
name: 'personInfor',
path: '/highQualityOperation/personInfor',
component: './HighQualityOperation/PersonInfor',
},
{ //高质量运营标杆项目 更多
name: 'MarkProject',
path: '/highQualityOperation/markProjectList',
component: './HighQualityOperation/MarkProjectList',
},
{ //工作风采 更多
name: 'activityStyle',
path: '/highQualityOperation/jobStyleList',
component: './HighQualityOperation/JobStyleList',
},
{ //运营提升小课堂 更多
name: 'classroomList',
path: '/highQualityOperation/classroomList',
component: './HighQualityOperation/ClassroomList',
},
{ //工作风采和banner 高质量运营标杆 小课堂详情
name: 'detail',
path: '/highQualityOperation/detail',
component: './HighQualityOperation/Detail',
},
{ //管理端 首页
name: 'manage',
path: '/highQualityOperation/manage',
component: './HighQualityOperation/Management/Manage',
},
]
},
];