Blame view

src/components/VHeader.vue 1.46 KB
a5f51b80   liuqimichale   完成页面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
  <template>
      <div class="header-wrap">
        <div class="header">
          <h1 class="fl logo-bg" @click="$router.push({name:'home'})"></h1>
          <ul class="fr nav">
            <!--<li>首页</li>-->
            <!--<li>停车服务</li>-->
            <!--<li>官网中心</li>-->
            <!--<li>黄石停车</li>-->
            <!--<li>联系我们</li>-->
            <router-link
              tag="li"
              :to="{path:list.routerLink}"
              v-for="(list, index) in navList"
              :key="index"
              exact="">
              {{list.name}}
            </router-link>
          </ul>
        </div>
      </div>
  </template>
  
  <script>
  export default {
    name: 'VHeader',
    data(){
      return {
        navList:[
          {name:'首页',routerLink:'/home'},
          {name:'停车服务',routerLink:'/service'},
          {name:'官网中心',routerLink:'/center'},
          {name:'黄石停车',routerLink:'/park'},
          {name:'联系我们',routerLink:'/about'},
        ]
      }
    }
  }
  </script>
  
  <style scoped lang="scss">
  .header-wrap{
    height: 80px;
    line-height: 80px;
    background:rgba(218,36,49,1);
  }
    .header{
      width: 1200px;
      height: 80px;
      margin: 0 auto;
    }
    .logo-bg{
      width: 163px;
      height: 80px;
      background: url("../assets/logo.png") no-repeat 0 center;
      cursor: pointer;
    }
    .nav li{
      height: 80px;
      float: left;
      margin-left: 50px;
      font-size: 16px;
      cursor: pointer;
      border-bottom: 2px solid rgba(218,36,49,1);
    }
  </style>