diff --git a/public/static/img/about/aboutBanner.png b/public/static/img/about/aboutBanner.png new file mode 100644 index 0000000..2560fd8 Binary files /dev/null and b/public/static/img/about/aboutBanner.png differ diff --git a/src/components/FootBar.vue b/src/components/FootBar.vue index 7c2e80d..d67ee22 100644 --- a/src/components/FootBar.vue +++ b/src/components/FootBar.vue @@ -148,17 +148,17 @@ export default { { title: '关于我们', children: [ - { title: '简介', path: '/', hash: 'develop-bar' }, - { title: '使命', path: '/', hash: 'work-bar' }, - { title: '远景', path: '/', hash: 'life-bar' }, - { title: '价值观', path: '/' }, + { title: '简介' }, + { title: '使命' }, + { title: '远景' }, + { title: '价值观' }, ], }, { title: '业务领域', children: [ - { title: '资本服务', path: '/' }, - { title: '高薪技术', path: '/' }, + { title: '资本服务', path: '/business/capitalServices' }, + { title: '高薪技术', path: '/business/highTech' }, { title: '能源环保', path: '/' }, { title: '全球供应链', path: '/' }, { title: '商业管理', path: '/' }, diff --git a/src/components/NavBar.vue b/src/components/NavBar.vue index 805e1a0..16a734d 100644 --- a/src/components/NavBar.vue +++ b/src/components/NavBar.vue @@ -88,20 +88,12 @@ export default { title: '首页', path: '/', }, - { - title: '关于我们', - children: [ - { title: '简介', path: '/' }, - { title: '使命', path: '/' }, - { title: '远景', path: '/' }, - { title: '价值观', path: '/' }, - ], - }, + { title: '关于我们', path: '/about/companyIntroduction' }, { title: '业务领域', children: [ - { title: '资本服务', path: '/' }, - { title: '高薪技术', path: '/' }, + { title: '资本服务', path: '/business/capitalServices' }, + { title: '高薪技术', path: '/business/highTech' }, { title: '能源环保', path: '/' }, { title: '全球供应链', path: '/' }, { title: '商业管理', path: '/' }, diff --git a/src/router/index.js b/src/router/index.js index c428560..5853f64 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -20,6 +20,16 @@ const routes = [ path: '/business', component: RouteView, children: [ + { + path: '/business/capitalServices', + component: (resolve) => + require(['../views/Business/CapitalServices/Index.vue'], resolve), + }, + { + path: '/business/highTech', + component: (resolve) => + require(['../views/Business/HighTech/Index.vue'], resolve), + }, { path: '/business/index', component: (resolve) => diff --git a/src/views/About/CompanyIntroduction/Index.vue b/src/views/About/CompanyIntroduction/Index.vue index e36c10d..44a1083 100644 --- a/src/views/About/CompanyIntroduction/Index.vue +++ b/src/views/About/CompanyIntroduction/Index.vue @@ -1,7 +1,7 @@