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
67
68
69
70
71
| <template>
| <div class="Footer" :class="{ isBlack: isBlack }">
| <div class="left">
| © 2009-2019 smartai.com 版权所有 ICP证:45456566 公网安备 436435455号
| </div>
| <div class="right">
| <span class="label" @click="jump">关于我们</span>
| <span class="label">法律声明</span>
| <span class="label">隐私政策</span>
| <span class="label">廉正举报</span>
| <span class="label" @click="$router.push('/connectUs')">联系我们</span>
| <span class="label">加入我们</span>
| </div>
| </div>
| </template>
|
| <script>
| export default {
| props: {
| isBlack: {
| type: Boolean,
| default: false,
| },
| },
| methods: {
| jump() {
| window.open("http://www.smartai.com/about");
| },
| jump2() {
| window.open("http://www.smartai.com/consult");
| },
| },
| };
| </script>
|
| <style lang="scss" scoped>
| .Footer {
| display: flex;
| justify-content: space-between;
| align-items: center;
| box-sizing: border-box;
| padding: 26px 20px;
| height: 100px;
| min-width: 1280px;
| background: #f3f5f8;
|
| .left {
| color: #666666;
| font-size: 12px;
| line-height: 24px;
| width: 305px;
| }
|
| .right {
| color: #666666;
| font-size: 12px;
|
| span {
| margin-left: 15px;
| cursor: pointer;
| }
| }
|
| &.isBlack {
| background: #252525;
| * {
| color: #9b9ea0;
| }
| }
| }
| </style>
|
|