|
|
|
@ -377,10 +377,12 @@ |
|
|
|
<h1 class="mb-3">{{ $t("xtzcoins3.a100") }}</h1> |
|
|
|
<div class="mb-3">{{ $t("xtzcoins3.a66") }}</div> |
|
|
|
<div class="btn3 mb-5"><router-link to="/exchange" class="target-a">{{ $t("xtzcoins3.a100") }}</router-link></div> |
|
|
|
<div class="d-flex justify-content-between" v-for="parentItem in (marketList)" v-if="parentItem.coin_name=='USDT'"> |
|
|
|
<div class="box" v-for="item in parentItem.marketInfoList.slice(0,5)"> |
|
|
|
<div class="d-flex justify-content-between" v-for="(parentItem, index11) in (marketList)" :key="index11"> |
|
|
|
<template v-if="parentItem.coin_name=='USDT'"> |
|
|
|
<div class="box" v-for="(item, index2) in parentItem.marketInfoList.slice(0,5)" :key="index2"> |
|
|
|
<div>{{item.pair_name}} <span :class="item.increase * 1 < 0 ? 'color-sell' : 'color-buy'">{{item.increaseStr}}</span></div><div class="num1">{{item.increase}}</div><div>${{item.close}}</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="section-block section-block-4" v-if="isLogin"> |
|
|
|
@ -463,14 +465,14 @@ |
|
|
|
<h1>{{ $t("xtzcoins3.a19") }}</h1> |
|
|
|
<div style="font-size: 20px;margin-bottom: 3rem;color: #6A6E74;">{{ $t("xtzcoins3.a20") }}</div> |
|
|
|
<div class="d-flex justify-content-between" style="flex-wrap:wrap;" v-for="(parentItem, index11) in marketList" :key="index11" > |
|
|
|
<block v-if="parentItem.coin_name=='USDT'"> |
|
|
|
<template v-if="parentItem.coin_name=='USDT'"> |
|
|
|
<div class="cell" v-for="(item, index) in parentItem.marketInfoList.slice(0,8)" :key="index"> |
|
|
|
<div>¥{{ omitTo(item.close*price_cny,2) }}</div><div :class="item.increase * 1 < 0 ? 'green-f color-sell' : 'green-f color-buy'">{{item.increaseStr}}</div> |
|
|
|
<div class="cell-b"><img alt="" :src="item.coin_icon" width="36" height="36" /><span>{{item.coin_name}}</span> |
|
|
|
<i><router-link to="/sign-in"><img src="../../../static/images/icon/right.png" alt="" style="background: #ffffff"></router-link></i> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</block> |
|
|
|
</template> |
|
|
|
</div> |
|
|
|
<div class="btn3"><router-link to="/sign-in" class="target-a">{{ $t("xtzcoins3.a21") }}</router-link></div> |
|
|
|
</div> |
|
|
|
|