Blame view

src/views/product/index.vue 965 Bytes
cadfb1c2   liuqimichale   产品中心 建立目录
1
  <template>
6bb29459   liuqimichale   产品中心banner
2
3
4
5
6
7
8
9
10
11
      <div>
        <commonProduct mainTitle="中兴智能交通" subTitle="构建绿色交通 享受安全便利出行"></commonProduct>
        <div class="tab-wrapper">
          <ul class="tab-main widthCommon">
            <li>智慧停车</li>
            <li>公安交通</li>
            <li>公共交通</li>
          </ul>
        </div>
      </div>
cadfb1c2   liuqimichale   产品中心 建立目录
12
13
14
  </template>
  
  <script>
6bb29459   liuqimichale   产品中心banner
15
  import commonProduct from '@/components/commonBanner'
cadfb1c2   liuqimichale   产品中心 建立目录
16
  export default {
6bb29459   liuqimichale   产品中心banner
17
18
19
20
21
    name: 'index',
    components:{
      commonProduct
    },
  
cadfb1c2   liuqimichale   产品中心 建立目录
22
23
24
25
26
  }
  </script>
  
  <style scoped lang="scss">
  
6bb29459   liuqimichale   产品中心banner
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
    .tab-wrapper{
      height:50px;
      background:rgba(237,237,237,1);
      /*line-height: 50px;*/
      padding-top: 5px;
    }
    .tab-main{
      padding-left: 100px;
      height: 45px;
      line-height: 45px;
    }
    .tab-main li{
      float: left;
      margin-right: 50px;
      width: 125px;
      background: #FFF;
      border-radius: 5px;
      color: #333;
      font-size: 16px;
      text-align: center;
      cursor: pointer;
    }
cadfb1c2   liuqimichale   产品中心 建立目录
49
  </style>