|
|
|
@ -462,13 +462,15 @@ |
|
|
|
<div class="section-block section-block-8" v-if="!isLogin"> |
|
|
|
<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 in marketList" v-if="parentItem.coin_name=='USDT'"> |
|
|
|
<div class="cell" v-for="item in parentItem.marketInfoList.slice(0,8)"> |
|
|
|
<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 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'"> |
|
|
|
<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> |
|
|
|
</div> |
|
|
|
</block> |
|
|
|
</div> |
|
|
|
<div class="btn3"><router-link to="/sign-in" class="target-a">{{ $t("xtzcoins3.a21") }}</router-link></div> |
|
|
|
</div> |
|
|
|
|