ZZJ
2022-07-28 fade1fbf16b2fb85dad87e3592d4ac9648e4d449
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
<template>
  <div class="Header">
    <div class="left">
      <!-- <img class="logo" src="/images/index/LOGO.png" alt="" />
      <div class="title">工业物联网平台</div> -->
    </div>
 
    <div class="right">
      <div class="link"><router-link to="/">首页</router-link></div>
      <!--  <div class="link" @click="jump2">联系我们</div>
      <div class="link" @click="jump">关于我们</div> -->
    </div>
  </div>
</template>
 
<script>
export default {
  methods: {
    jump() {
      window.open("http://www.smartai.com/about");
    },
    jump2() {
      window.open("http://www.smartai.com/consult");
    },
  },
};
</script>
 
<style scoped lang="scss">
.Header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0 20px;
  height: 62px;
  background-color: #fff;
  font-size: 14px;
 
  .left {
    display: flex;
    align-items: center;
 
    .logo {
      width: 33.5px;
      margin-right: 7.5px;
    }
    .title {
      font-size: 14px;
      font-weight: 700;
    }
  }
 
  .right {
    display: flex;
    align-items: center;
 
    .link {
      margin-right: 20px;
      cursor: pointer;
    }
  }
}
</style>