5.10航天ui交易所pc端,代码jiem-pc
lxf
2025-05-23 e9fcfc26a37a207f74372483fd93efedd89dc85e
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<template>
  <div class="common-footer">
    <div class="footer">
      <div class="footer_top">
        <div class="footer_left">
          <div class="logo">
            <span class="avatar"></span><span class="text">Mateonline</span>
          </div>
          <div class="text">
            Coinmate成立於2014年,目前總部位於英國。是全球領先的數位貨幣資產交易平台,致力於為用戶提供安全,專業,便利的數位貨幣交易服務。在加密貨幣撮合交易領域佔了43.17%的市佔率。
          </div>
        </div>
        <div class="footer_list">
          <h1 class="about">關於</h1>
          <ul>
            <li>
              <a href="javascript:void(0)" @click="goRouter('/about')"
                >關於我們</a
              >
            </li>
            <li>
              <a href="javascript:void(0)" @click="goRouter('/termsOfService')"
                >服務條款</a
              >
            </li>
            <li>
              <a href="javascript:void(0)" @click="goRouter('/agreement')"
                >合作協議</a
              >
            </li>
          </ul>
        </div>
        <div class="footer_list">
          <h1 class="about">聯繫我們</h1>
          <ul>
            <li>
              <a href="javascript:void(0);" @click="goRouter('/helpCenter')"
                >幫助中心</a
              >
            </li>
            <li>
              <a
                href="javascript:void(0);"
                @click="goRouter('/CustomerService')"
                >客服中心</a
              >
            </li>
            <li>
              <a
                href="javascript:void(0);"
                style="
                  color: rgb(255, 255, 255);
                  font-size: 12px;
                  text-decoration: underline;
                "
                >coinmatecrypto@outlook.com</a
              >
            </li>
          </ul>
        </div>
      </div>
      <div class="footer_bottom">
        <p>Coinmate全球優質數字資產</p>
        <p>Copyright © 2021 - Coinmate All rights reserved.</p>
      </div>
    </div>
  </div>
</template>
 
<script>
import LangSelect from "./langSelect.vue";
export default {
  name: "footerView",
  components: {
    LangSelect,
  },
  data() {
    return {};
  },
  mounted() {},
  methods: {
    goRouter(parmas) {
      this.$router.push(parmas);
    },
 
    goapp() {
      if (localStorage.getItem("localLan") == "en") {
        window.location.href = "https://" + this.host_url + "/app.html";
      } else if (localStorage.getItem("localLan") == "cht") {
        window.location.href = "https://" + this.host_url + "/app-ft.html";
      } else if (localStorage.getItem("localLan") == "zh-CN") {
        window.location.href = "https://" + this.host_url + "/app-cn.html";
      }
    },
    handleChangeLang(type) {
      this.$refs.langSelect.isShowClick(type);
    },
  },
};
</script>
 
<style scoped>
.footer {
  min-height: 100px;
  background: rgb(24, 26, 32);
  border-top: 1px solid rgba(109, 109, 109, 0.5);
  .footer_top {
    width: 94%;
    margin: 0 auto;
    display: flex;
    padding: 16px 0;
    .footer_left {
      flex: 0 0 40%;
      box-sizing: border-box;
      .logo {
        display: flex;
        align-items: center;
        .avatar {
          width: 40px;
          height: 40px;
          background: url(../../assets/forexImages/logo-66dce226.png) no-repeat
            center center;
          background-size: 40px 40px;
        }
        .text {
          color: #fff;
          font-size: 16px;
          letter-spacing: 3px;
        }
      }
      .text {
        color: #989898;
        font-size: 14px;
      }
    }
 
    .footer_list {
      flex: 0 0 30%;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      .about {
        color: #fff;
        font-size: 20px;
        font-weight: 400;
        width: 100%;
        text-align: center;
      }
      /* h1 {
          font-size: 16px;
          color: #fff;
          margin-bottom: 10px;
        } */
      ul {
        width: 100%;
        li {
          width: 100%;
          text-align: center;
          a {
            width: 100%;
            text-align: center;
            text-decoration: none;
            color: #989898;
            height: 40px;
            line-height: 40px;
            &:hover {
              display: inline-block;
              color: #f7b328;
            }
          }
        }
      }
    }
  }
  .footer_bottom {
    width: 94%;
    margin: 0 auto;
    padding: 16px 0;
    border-top: 1px solid rgba(109, 109, 109, 0.5);
    p {
      margin-top: 4px;
      color: #989898;
      font-size: 12px;
    }
  }
}
</style>