mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 09:46:43 +08:00
113 lines
2.9 KiB
JavaScript
113 lines
2.9 KiB
JavaScript
//客户管理 定义相关组件
|
|
const BranchOffice = () => import('@/views/ebiz/institutionalPerform/BranchOffice')
|
|
const UnderOffice = () => import('@/views/ebiz/institutionalPerform/UnderOffice')
|
|
const DistrictOffice = () => import('@/views/ebiz/institutionalPerform/DistrictOffice')
|
|
const DepartmentOffice = () => import('@/views/ebiz/institutionalPerform/DepartmentOffice')
|
|
const GroupOffice = () => import('@/views/ebiz/institutionalPerform/GroupOffice')
|
|
const PersonalOffice = () => import('@/views/ebiz/institutionalPerform/PersonalOffice')
|
|
const ServiceDepartOffice = () => import('@/views/ebiz/institutionalPerform/ServiceDepartOffice')
|
|
const RegionalOffice = () => import('@/views/ebiz/institutionalPerform/RegionalOffice')
|
|
|
|
const InstitutionalManpower = () => import('@/views/ebiz/institutionalPerform/InstitutionalManpower')
|
|
const institutionalPerform = () => import('@/views/ebiz/institutionalPerform/institutionalPerform')
|
|
export default [
|
|
// 分公司
|
|
{
|
|
path: '/institutionalPerform/BranchOffice',
|
|
name: 'BranchOffice',
|
|
component: BranchOffice,
|
|
meta: {
|
|
title: '机构业绩',
|
|
index: 1
|
|
}
|
|
},
|
|
// 支公司 02
|
|
{
|
|
path: '/institutionalPerform/underOffice',
|
|
name: 'underOffice',
|
|
component: UnderOffice,
|
|
meta: {
|
|
title: '排名',
|
|
index: 1
|
|
}
|
|
},
|
|
// 营销服务部 03
|
|
{
|
|
path: '/institutionalPerform/serviceDepartOffice',
|
|
name: 'serviceDepartOffice',
|
|
component: ServiceDepartOffice,
|
|
meta: {
|
|
title: '机构业绩',
|
|
index: 1
|
|
}
|
|
},
|
|
// 区公司 04
|
|
{
|
|
path: '/institutionalPerform/districtOffice',
|
|
name: 'districtOffice',
|
|
component: DistrictOffice,
|
|
meta: {
|
|
title: '机构业绩',
|
|
index: 1
|
|
}
|
|
},
|
|
// 直辖区 05
|
|
{
|
|
path: '/institutionalPerform/regionalOffice',
|
|
name: 'regionalOffice',
|
|
component: RegionalOffice,
|
|
meta: {
|
|
title: '机构业绩',
|
|
index: 1
|
|
}
|
|
},
|
|
// 营业部公司 06
|
|
{
|
|
path: '/institutionalPerform/departmentOffice',
|
|
name: 'departmentOffice',
|
|
component: DepartmentOffice,
|
|
meta: {
|
|
title: '机构业绩',
|
|
index: 1
|
|
}
|
|
},
|
|
// 组 07
|
|
{
|
|
path: '/institutionalPerform/groupOffice',
|
|
name: 'groupOffice',
|
|
component: GroupOffice,
|
|
meta: {
|
|
title: '机构业绩',
|
|
index: 1
|
|
}
|
|
},
|
|
// 个人 08
|
|
{
|
|
path: '/institutionalPerform/personalOffice',
|
|
name: 'personalOffice',
|
|
component: PersonalOffice,
|
|
meta: {
|
|
title: '机构业绩',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/institutionalPerform/InstitutionalManpower/:manageLv/:manageCode',
|
|
name: 'InstitutionalManpower',
|
|
component: InstitutionalManpower,
|
|
meta: {
|
|
title: '机构业绩',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/institutionalPerform/InstitutionalPerform/:manageLv/:manageCode',
|
|
name: 'institutionalPerform',
|
|
component: institutionalPerform,
|
|
meta: {
|
|
title: '机构业绩',
|
|
index: 1
|
|
}
|
|
}
|
|
]
|