<template>
|
<div id="cryptos">
|
<div class="CommonProblem">
|
<assets-head :title="serviceTerm ? $t('服务条款') : $t('关于我们')" />
|
<div class="CommonProblem-padding">
|
<p style="font-size: 18px;line-height: 30px;" v-html="content"></p>
|
<img src="@/assets/20250716-183935.jpeg" alt="" class="mx-auto block">
|
</div>
|
</div>
|
</div>
|
</template>
|
<script>
|
import assetsHead from "@/components/Transform/assets-head/index.vue";
|
import { _getAboutUs } from "@/service/user.api"
|
import { dataTimeEx } from '@/utils/utis'
|
export default {
|
data() {
|
return {
|
content: `StarEX 是一站式的全球貨幣交易平台,提供超過 300 種數位貨幣的交易選擇,涵蓋現貨、合約、複製交易與 NFT 市場。平台自 2018 年成立以來,已拓展至新加坡、迪拜、北美等多地,致力於打造安全、高效、友善的數位資產環境。<br><br>我們採用銀行級資安機制、冷錢包管理及多重認證,保障每一位用戶的資產安全。無論你是剛入門的新手,還是專業的交易者,都能在 StarEX 體驗到流暢穩定的交易服務。<br><br>交易不只是投資,而是你掌握未來的方式。<br>StarEX,讓資產自由更靠近。`,
|
title: '',
|
createTime: '',
|
serviceTerm: '',
|
dataTimeEx
|
}
|
},
|
components: {
|
assetsHead
|
},
|
mounted() {
|
this.serviceTerm = this.$route.query.serviceTerm
|
console.log(this.serviceTerm, 'this.serviceTerm')
|
this.getCms();
|
},
|
methods: {
|
onClickLeft() {
|
this.$router.push('/')
|
},
|
getCms() {
|
let language
|
if (this.$i18n.locale == 'zh-CN' || this.$i18n.locale == 'CN') {
|
language = this.$i18n.locale
|
} else {
|
language = 'en'
|
}
|
// _getAboutUs({
|
// content_code: this.serviceTerm ? '001' : '020',
|
// language: this.serviceTerm ? language : this.$i18n.locale,
|
// }).then((res) => {
|
// this.content = res.content
|
// this.title = res.title
|
// this.createTime = this.dataTimeEx(res.createTime)
|
|
// }).catch((error) => {
|
// if (error.code == 'ECONNABORTED') { this.$toast(this.$t('网络超时!')); }
|
// else if (error.msg !== undefined) { this.$toast(this.$t(error.msg)); }
|
// });
|
}
|
}
|
}
|
</script>
|
<style lang="scss">
|
@import "@/assets/init.scss";
|
|
#cryptos {
|
.CommonProblem {
|
width: 100%;
|
box-sizing: border-box;
|
}
|
|
pre {
|
white-space: pre-wrap;
|
}
|
|
.CommonProblem-padding {
|
padding-left: 35px;
|
padding-right: 35px;
|
font-weight: 400;
|
font-size: 30px;
|
line-height: 35px;
|
color: $text_color;
|
}
|
|
.CommonProblem-title {
|
font-style: normal;
|
font-weight: 700;
|
font-size: 50px;
|
line-height: 59px;
|
padding-left: 35px;
|
padding-right: 35px;
|
margin-top: 57px;
|
margin-bottom: 22px;
|
color: $text_color;
|
}
|
}
|
</style>
|