<template>
|
<div class="list-quatation">
|
<!-- <ex-tabs @tabs="onTabs"></ex-tabs> -->
|
<van-list>
|
<!-- <van-cell>
|
<div class="flex items-center w-full text-grey font-26">
|
<p class="left text-left">
|
<span>{{ $t('交易对') }}
|
</span>
|
</p>
|
<p class="mid text-right">
|
{{ $t('最新价') }}
|
</p>
|
<p class="right text-right">
|
{{ active == 3 ? $t('成交额') : $t('24h涨跌幅') }}
|
</p>
|
</div>
|
</van-cell> -->
|
<!-- 热门 -->
|
<div class="flex items-end justify-between" style="margin: 14px 0;">
|
<div class="block text-22 font-medium" >{{$t('Market')}}</div>
|
<div class="relative text-13">
|
<!-- <div class="flex px-10 justify-between rounded-full bg-black text-white min-w-100 box-border">
|
<div class="block">貨幣</div>
|
<div class="i-material-symbols:arrow-drop-down-rounded"></div>
|
</div> -->
|
<!-- <div class="px-9 py-10 bg-black text-white flex flex-col absolute min-w-100 box-border top-25 rounded-11 leading-28" style="display: none;">
|
<div>貨幣</div>
|
<div>數字貨幣</div>
|
<div>期貨</div>
|
<div>收藏</div>
|
</div> -->
|
</div>
|
</div>
|
|
|
<transition-group :name="type" tag="div">
|
<div v-if="active == 0" :key="active">
|
<van-cell v-for="item in listData" :key="item.id" style="background-color: #f0f0f0;margin-bottom: 10px;">
|
<ul class="flex justify-between w-full items-center" @click="onItemClick(item)">
|
<li class="flex items-center left">
|
<img
|
:src="item.symbol ? `${HOST_URL}/symbol/${item.symbol_data}.png` : handleImage('../../../assets/loading-default.png')"
|
alt="logo" class="w-72 h-72 rounded-full mr-16" />
|
<p class="flex flex-col">
|
<span class="flex items-end font-32 flex items-center">
|
<span class="textColor font-600 font-30">{{ item.symbol_data && item.symbol_data.toUpperCase() || '--'
|
}}</span>
|
<span class="font-24 text-grey" style="position: relative; top: 1px">
|
/USDT
|
</span>
|
<!-- <span class="font-24 text-grey" style="position: relative; top: 1px">
|
{{ item.name && item.name.replace(item.symbol.toUpperCase(), '') || '--' }}</span> -->
|
</span>
|
<span class="font-24 text-grey text-left">{{ $t('成交量') + ' ' + (item.amount * 1).toFixed(2) }}</span>
|
</p>
|
</li>
|
<li class="flex flex-col items-end mid">
|
<p class="textColor font-32 font-600">{{ item.close || '--' }}</p>
|
<p class="font-24 text-grey">{{ currency.currency_symbol }}
|
{{ item.close && item.symbol_data.toUpperCase() == 'SHIB' ? (item.close * currency.rate).toFixed(8) : (item.close *
|
currency.rate).toFixed(2) || '--' }}</p>
|
</li>
|
<li class="right flex items-center justify-end">
|
<p class="w-153 font-31 h-71 bg-green text-white border-0 text-center btn" v-if="item.change_ratio_str > 0">
|
+{{ item.change_ratio_str || (item.change_ratio_str === 0 ? 0 : '--') }}%</p>
|
<p class="w-153 font-31 h-71 bg-red text-white border-0 text-center btn" v-else>
|
{{ item.change_ratio_str || (item.change_ratio_str === 0 ? 0 : '--') }}%</p>
|
</li>
|
</ul>
|
</van-cell>
|
</div>
|
<div v-else :key="active">
|
<van-cell v-for="item in showList" :key="item.id">
|
<ul class="flex justify-between w-full items-center" @click="onItemClick(item)">
|
<li class="flex items-center left">
|
<img :src="`${HOST_URL}/symbol/${item.symbol_data}.png`" alt="logo"
|
class="w-72 h-72 rounded-full mr-16" />
|
<p class="flex flex-col">
|
<span class="flex items-end font-32 flex items-center">
|
<span class="textColor font-600 font-30">{{ item.symbol_data && item.symbol_data.toUpperCase() || '--'
|
}}</span>
|
<!-- <span class="font-24 text-grey" style="position: relative; top: 1px">
|
{{ item.name && item.name.replace(item.symbol.toUpperCase(), '') || '--' }}</span> -->
|
<span class="font-24 text-grey" style="position: relative; top: 1px">
|
/USDT
|
</span>
|
</span>
|
<span class="font-24 text-grey text-left">{{ $t('成交量') + ' ' + (item.amount * 1).toFixed(2) }}</span>
|
</p>
|
</li>
|
<li class="flex flex-col items-end mid">
|
<p class="textColor font-32 font-600">{{ item.close }}</p>
|
<p class="font-24 text-grey">{{ currency.currency_symbol }} {{ item.close && item.symbol_data.toUpperCase() == 'SHIB' ? (item.close * currency.rate).toFixed(8) : (item.close *
|
currency.rate).toFixed(2) || '--' }}</p>
|
</li>
|
<li class="right flex items-center justify-end text-right">
|
<div v-if="active == 3" class="textColor w-182 font-700 font-24">
|
{{ (item.volume * 1).toFixed(2) }}
|
</div>
|
<template v-else>
|
<p class="w-153 font-31 h-71 bg-green text-white border-0 text-center btn" v-if="item.change_ratio_str > 0">
|
+{{ item.change_ratio_str }}%</p>
|
<p class="w-153 font-31 h-71 bg-red text-white border-0 text-center btn" v-else>
|
{{ item.change_ratio_str || (item.change_ratio_str === 0 ? 0 : '--') }}%</p>
|
</template>
|
</li>
|
</ul>
|
</van-cell>
|
</div>
|
</transition-group>
|
</van-list>
|
<!-- <div class="flex flex-col justify-center items-center pb-58 mt-20" @click="$router.push('/quotes/?active=3')" v-if="showMore">
|
<p class="text-grey font-28 mb-8">{{ $t('查看') }}</p>
|
<img src="./icon-arrow_more.png" alt="more" class="w-24 h-10"/>
|
</div> -->
|
</div>
|
</template>
|
<script>
|
import { List, Cell } from 'vant'
|
import { mapGetters, mapActions } from 'vuex'
|
import { fixDate, setStorage } from "@/utils";
|
import ExTabs from "@/components/Transform/ex-tabs/index.vue";
|
import { HOST_URL } from '@/config'
|
import { SET_CURRENCY } from "@/store/const.store";
|
// import { useI18n } from "vue-i18n";
|
// const t = useI18n()
|
export default {
|
name: 'ListQuotation',
|
data() {
|
return {
|
fixDate,
|
HOST_URL,
|
active: 0,
|
type: 'left' //left 从左往右 right 从有王座
|
}
|
},
|
props: {
|
showMore: {
|
type: Boolean,
|
default: true
|
},
|
listData: {
|
type: Array,
|
default() {
|
return []
|
}
|
},
|
tabActive: {
|
type: Number,
|
default: 0
|
},
|
},
|
computed: {
|
...mapGetters({ currency: 'home/currency' }),
|
},
|
components: {
|
[List.name]: List,
|
[Cell.name]: Cell,
|
ExTabs
|
},
|
mounted() {
|
this.SET_CURRENCY()
|
},
|
methods: {
|
...mapActions('home', [SET_CURRENCY]),
|
onItemClick(item) {
|
if (this.tabActive == 2) { //现货
|
this.$router.push({
|
path: `/cryptos/trade/${item.symbol}`
|
});
|
} else {
|
setStorage('symbol', item.symbol)
|
// /cryptos/perpetualContract/btcusdt?selectIndex=2
|
this.$router.push({
|
path: `/cryptos/perpetualContract/${item.symbol}`,
|
query: { type: 'cryptos', selectIndex: 2 }
|
});
|
// this.$router.push({
|
// path: `/foreign/deliveryContract/${item.symbol}`,
|
// query: { type: 'cryptos' }
|
// });
|
// this.$router.push({
|
// path: `/cryptos/perpetualContract/${item.symbol}`,
|
// query: { type: 'cryptos' }
|
// });
|
}
|
},
|
handleImage(url) {
|
return new URL(url, import.meta.url).href
|
},
|
onTabs(val) {
|
if (this.active < val) {
|
this.type = 'right'
|
} else {
|
this.type = 'left'
|
}
|
this.active = val
|
if (val == 0) {
|
this.showList = [...this.listData];
|
} else if (val == 1) {
|
this.showList = [...this.listData].sort(this.compare("change_ratio_str", 'up'))
|
} else if (val == 2) {
|
this.showList = [...this.listData].sort(this.compare("change_ratio_str", 'down'))
|
} else if (val == 3) {
|
this.showList = [...this.listData].sort(this.compare("volume", 'up'))
|
}
|
},
|
compare(p, type) { //这是比较函数
|
return function (m, n) {
|
var a = m[p];
|
var b = n[p];
|
if (a == b) {
|
return
|
}
|
if (type == 'up') {
|
return b - a; //升序
|
} else if (type == 'down') {
|
return a - b; //降序
|
} else {
|
return a - b;
|
}
|
}
|
}
|
},
|
watch: {
|
listData() {
|
if (this.active == 0) {
|
this.showList = [...this.listData];
|
} else if (this.active == 1) {
|
this.showList = [...this.listData].sort(this.compare("change_ratio_str", 'up'))
|
} else if (this.active == 2) {
|
this.showList = [...this.listData].sort(this.compare("change_ratio_str", 'down'))
|
} else if (this.active == 3) {
|
this.showList = [...this.listData].sort(this.compare("volume", 'up'))
|
}
|
this.$forceUpdate()
|
}
|
}
|
}
|
</script>
|
<style lang="scss" scoped>
|
@import "@/assets/init.scss";
|
@import '@/assets/css/deepseek_css_20250625_30ff932.css';
|
|
#cryptos {
|
|
.left-enter-active,
|
.left-leave-active,
|
.right-enter-active,
|
.right-leave-active {
|
will-change: transform;
|
transition: all 250ms;
|
}
|
|
.left-leave-active,
|
.right-leave-active {
|
display: none;
|
}
|
|
.left-enter {
|
opacity: 0;
|
transform: translate3d(-100%, 0, 0);
|
}
|
|
.left-leave {
|
opacity: 0;
|
transform: translate3d(0%, 0, 0)
|
}
|
|
.right-enter {
|
opacity: 0;
|
transform: translate3d(100%, 0, 0);
|
}
|
|
.right-leave {
|
opacity: 0;
|
transform: translate3d(0%, 0, 0)
|
}
|
|
.btn {
|
border-radius: 9px;
|
line-height: 71px;
|
}
|
|
.left {
|
width: 382px
|
}
|
|
.mid {
|
width: 185px;
|
}
|
|
.right {
|
width: 182px;
|
margin-left: 38px;
|
}
|
|
}
|
|
.textColor {
|
color: #242629;
|
}
|
|
.text-grey{
|
// color: #8c8c8c;
|
}
|
</style>
|