更改路由

This commit is contained in:
wangchengming 2025-03-17 11:11:13 +08:00
parent 41551a1e70
commit 9a324b7e0e
3 changed files with 24 additions and 24 deletions

View File

@ -157,14 +157,14 @@ export default {
{ {
title: '业务范围', title: '业务范围',
children: [ children: [
{ title: '资本服务', path: '/Cs.cnkhp.com' }, { title: '资本服务', path: '/Cs' },
{ title: '高新技术', path: '/Tech.cnkhp.com' }, { title: '高新技术', path: '/Tech' },
{ title: '大健康产业', path: '/HI.cnkhp.com' }, { title: '大健康产业', path: '/HI' },
{ title: '基础设施', path: '/BI.cnkhp.com' }, { title: '基础设施', path: '/BI' },
{ title: '能源环保', path: '/EE.cnkhp.com' }, { title: '能源环保', path: '/EE' },
{ title: '供应链管理', path: '/SCm.cnkhp.com' }, { title: '供应链管理', path: '/SCm' },
{ title: '农业发展', path: '/AD.cnkhp.com' }, { title: '农业发展', path: '/AD' },
{ title: '商业服务', path: '/BM.cnkhp.com' } { title: '商业服务', path: '/BM' }
], ],
}, },
{ {

View File

@ -63,14 +63,14 @@
{ {
title: '业务范围', title: '业务范围',
children: [ children: [
{ title: '资本服务', path: '/Cs.cnkhp.com' }, { title: '资本服务', path: '/Cs' },
{ title: '高新技术', path: '/Tech.cnkhp.com' }, { title: '高新技术', path: '/Tech' },
{ title: '大健康产业', path: '/HI.cnkhp.com' }, { title: '大健康产业', path: '/HI' },
{ title: '基础设施', path: '/BI.cnkhp.com' }, { title: '基础设施', path: '/BI' },
{ title: '能源环保', path: '/EE.cnkhp.com' }, { title: '能源环保', path: '/EE' },
{ title: '供应链管理', path: '/SCm.cnkhp.com' }, { title: '供应链管理', path: '/SCm' },
{ title: '农业发展', path: '/AD.cnkhp.com' }, { title: '农业发展', path: '/AD' },
{ title: '商业服务', path: '/BM.cnkhp.com' } { title: '商业服务', path: '/BM' }
] ]
}, },
{ {

View File

@ -21,42 +21,42 @@ const routes = [
component: RouteView, component: RouteView,
children: [ children: [
{ {
path: '/Cs.cnkhp.com', path: '/Cs',
component: (resolve) => component: (resolve) =>
require(['../views/Business/CapitalServices/Index.vue'], resolve), require(['../views/Business/CapitalServices/Index.vue'], resolve),
}, },
{ {
path: '/Tech.cnkhp.com', path: '/Tech',
component: (resolve) => component: (resolve) =>
require(['../views/Business/HighTech/Index.vue'], resolve), require(['../views/Business/HighTech/Index.vue'], resolve),
}, },
{ {
path: '/HI.cnkhp.com', path: '/HI',
component: (resolve) => component: (resolve) =>
require(['../views/Business/HealthIndustry/Index.vue'], resolve), require(['../views/Business/HealthIndustry/Index.vue'], resolve),
}, },
{ {
path: '/BI.cnkhp.com', path: '/BI',
component: (resolve) => component: (resolve) =>
require(['../views/Business/Construction/Index.vue'], resolve), require(['../views/Business/Construction/Index.vue'], resolve),
}, },
{ {
path: '/EE.cnkhp.com', path: '/EE',
component: (resolve) => component: (resolve) =>
require(['../views/Business/EnergyEnvironment/Index.vue'], resolve), require(['../views/Business/EnergyEnvironment/Index.vue'], resolve),
}, },
{ {
path: '/SCm.cnkhp.com', path: '/SCm',
component: (resolve) => component: (resolve) =>
require(['../views/Business/GlobalSupplyChain/Index.vue'], resolve), require(['../views/Business/GlobalSupplyChain/Index.vue'], resolve),
}, },
{ {
path: '/AD.cnkhp.com', path: '/AD',
component: (resolve) => component: (resolve) =>
require(['../views/Business/FutureAgriculture/Index.vue'], resolve), require(['../views/Business/FutureAgriculture/Index.vue'], resolve),
}, },
{ {
path: '/BM.cnkhp.com', path: '/BM',
component: (resolve) => component: (resolve) =>
require(['../views/Business/Commercial/Index.vue'], resolve), require(['../views/Business/Commercial/Index.vue'], resolve),
}, },