<template>
|
<div class="CommonProblem">
|
<van-nav-bar :title="$t('常见问题')" left-arrow @click-left="onClickLeft" />
|
<!-- <div class="CommonProblem-title font-53 pl-33 lh-62 mt-56 mb-17">{{ $t('常见问题') }}</div>-->
|
<!-- <div class="font-25 text-grey lh-28 pl-33 ">{{ $t('最新更新时间: 2022年6月6日') }}</div>-->
|
<div class="segmentation-max"></div>
|
<div class="CommonProblem-padding">
|
<p class="mt-20 font-38 font-700" style="line-height: 3.5rem;">{{$t('1.我如何加入量化交易?')}}</p>
|
<p style="line-height: 3.5rem;">{{$t('在coinbase的dapp输入中,输入量化交易的官网,点击开设账户后,完成coinbase钱包和量化交易的连接即可开始交易。')}}</p>
|
<p class="mt-20 font-38 font-700" style="line-height: 3.5rem;">{{$t('2.我如何在量化交易中提取我的资金。')}}</p>
|
<p style="line-height: 3.5rem;">{{$t('在个人的资产中心里查看自己的USDT余额,发起提现,输入要提币的钱包地址,智能合约会自动运行,在30分钟内处理这笔提现请求。 但在发起提币之前,为了确保资金安全,用户必须进行KYC认证。')}}</p>
|
<p class="mt-20 font-38 font-700" style="line-height: 3.5rem;">{{$t('3.如何计算在量化当中获得的收入。')}}</p>
|
<p style="line-height: 3.5rem;">{{$t('量化交易奖励每天分4次发放,0.6.12.18 (GMT+8)')}}</p>
|
<p style="line-height: 3.5rem;">{{$t('一天可以领取4次收益奖励。 质押总收益在质押记录中能查看到自己的历史订单以及收益发放。')}}</p>
|
<p style="line-height: 3.5rem;">{{$t('特别提示:量化交易奖励发放时间为48小时制,如若在48小时内领取自己的质押收益,量化交易会收回奖励。')}}</p>
|
<p class="mt-20 font-38 font-700" style="line-height: 3.5rem;">{{$t('4:为什么选择coinbase进行交易?')}}</p>
|
<p style="line-height: 3.5rem;">{{$t('由于在高度监管的环境下运营,Coinbase采取了额外的措施来确保客户数据得到保护,甚至连Coinbase自己的数据科学家和工程师都无法随意访问到这些数据。 在 Coinbase 生产服务器上运行的任何代码在投产前都必须经过多组人员的代码审查。 “我们的核心原则之一就是安全第一,因为存储在我们平台上的数字资产都属于我们的客户。')}}</p>
|
</div>
|
|
<div>
|
<div class="CommonProblem_detail font-31 px-33 mt-55 lh-36">
|
|
</div>
|
</div>
|
|
|
</div>
|
</template>
|
<script>
|
import { Icon, NavBar } from 'vant'
|
export default {
|
components: {
|
[Icon.name]: Icon,
|
[NavBar.name]: NavBar,
|
},
|
data() {
|
return {}
|
},
|
methods: {
|
onClickLeft() {
|
this.$router.push('/')
|
},
|
}
|
}
|
</script>
|
<style lang="scss" scoped>
|
.CommonProblem-title {
|
font-weight: 700;
|
color: #000000;
|
}
|
|
.CommonProblem_detail {
|
color: #000000;
|
|
.problem {
|
text-decoration: underline;
|
}
|
}
|
.font-53{
|
font-size: 2.375rem;
|
}
|
.font-25{
|
|
}
|
.segmentation-max{
|
width: 100%;
|
height: 1.25rem;
|
background: #f5f5f5;
|
}
|
.CommonProblem-padding{
|
padding-left: 3.125rem;
|
padding-right: 3.125rem;
|
font-weight: 400;
|
font-size: 1.875rem;
|
line-height: 2.1875rem;
|
color: #000;
|
}
|
</style>
|