瀏覽代碼

关于我们

luyanan 6 年之前
父節點
當前提交
2fc1d9219a

+ 1 - 1
src/common/stylus/base.styl

@ -7,7 +7,7 @@ html,body
7 7
  height: 100%
8 8
9 9
body *
10
  font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif
10
  font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑","黑体",Arial,sans-serif
11 11
12 12
ul
13 13
  margin: 0

+ 1 - 1
src/components/main-views/TheFooter.vue

@ -5,7 +5,7 @@
5 5
				<div class="wrapper-left">
6 6
					<img class="logo-block" :src="plat.logourl">
7 7
					<div>
8
						<router-link to='aboutUs'>关于我们 |</router-link>
8
						<router-link to='about'>关于我们 |</router-link>
9 9
						<a :href="plat.website">{{plat.name}} |</a>
10 10
						<a :href="kexiuLink" target="_blank">科袖网 |</a>
11 11
						<a @click="goWorkBench">平台管理员登录</a>

+ 1 - 1
src/components/main-views/TheHeader.vue

@ -24,7 +24,7 @@
24 24
          <router-link to='findResource' active-class="active" tag="li">找资源</router-link>
25 25
          <router-link to='expertPool' active-class="active" tag="li">专家顾问</router-link>
26 26
          <router-link to='cooperationAgency' active-class="active" tag="li">合作机构</router-link>
27
          <router-link to='aboutUs' active-class="active" tag="li">关于我们</router-link>
27
          <router-link to='about' active-class="active" tag="li">关于我们</router-link>
28 28
        </ul>
29 29
      </div>
30 30
    </div>

+ 2 - 2
src/router/router.js

@ -63,9 +63,9 @@ export const otherRouter = {
63 63
      name: 'cooperationAgency',
64 64
      component: () => import('@/components/main-views/ViewCooperationAgency.vue')
65 65
    },
66
    { path: 'aboutUs',
66
    { path: 'about',
67 67
      title: '关于我们',
68
      name: 'aboutUs',
68
      name: 'about',
69 69
      component: () => import('@/components/main-views/ViewAboutUs.vue')
70 70
      // component: resolve => { require(['../components/ViewAboutUs.vue'], resolve); }
71 71
    }