From 3f3e2d5977787b0c6e09cd5cba7b41e5fb7d3fd0 Mon Sep 17 00:00:00 2001
From: zzzz <690498789@qq.com>
Date: Sun, 21 Apr 2024 15:59:28 +0800
Subject: [PATCH] first
---
src/components/trade-head/index.vue | 22 ++++++++++++++++------
1 files changed, 16 insertions(+), 6 deletions(-)
diff --git a/src/components/trade-head/index.vue b/src/components/trade-head/index.vue
index a2db832..ca42c49 100644
--- a/src/components/trade-head/index.vue
+++ b/src/components/trade-head/index.vue
@@ -5,7 +5,7 @@
<div class="pl-30 pr-30">
<div class="flex justify-between pt-45">
<div class="flex">
- <!-- <img
+ <img
v-if="isReturn"
:src="require(`@/assets/theme/${theme}/image/icon_back.png`)"
class="w-40 h-40 back mr-50"
@@ -16,7 +16,7 @@
: $router.push(`/perpetualContract/${symbol}`)
"
/>
- <img
+ <!-- <img
:src="require(`@/assets/theme/${theme}/image/convert.png`)"
alt="convert-img"
class="w-35 h-35"
@@ -24,7 +24,7 @@
/> -->
<div class="flex flex-col pl-21" @click="onSidebar">
<div class="font-35 textColor">
- {{ (symbol && symbol.toUpperCase()) || "--" }}/USDT
+ {{ symbol | _symbolName(1) }}
</div>
</div>
<div
@@ -97,7 +97,10 @@
@click="onRoute(item)"
>
<div>
- <div class="font-700 textColor">{{ item.name || "--" }}</div>
+ <!-- {{ JSON.stringify(item) }} -->
+ <div class="font-700 textColor">
+ {{ item.symbol | _symbolName(1) }}
+ </div>
<div v-if="!kineType" class="text-grey mt-10">{{ title }}</div>
</div>
<div class="text-right">
@@ -172,6 +175,7 @@
...mapGetters({
coinList: "home/coinList",
theme: "home/theme",
+ newcoinArr: "home/newcoinArr",
}),
},
data() {
@@ -191,6 +195,9 @@
// { name:"ADA/USDT",close:"0.493085",change_ratio:"-4.08"},
//]
};
+ },
+ mounted() {
+ this.NEW_CION_LIST();
},
watch: {
symbol(val) {
@@ -218,7 +225,7 @@
}
},
methods: {
- ...mapMutations("home", ["SET_THEME"]),
+ ...mapMutations("home", ["SET_THEME", "NEW_CION_LIST"]),
onRoute(item) {
if (this.islevel) {
if (this.$route.params.symbol !== item.symbol) {
@@ -251,7 +258,10 @@
},
fetchList() {
// 获取行情
- _getHomeList(this.coins.join(",")).then((list) => {
+ const mainArray = this.coins.filter(
+ (item) => !this.newcoinArr.includes(item)
+ );
+ _getHomeList(mainArray.join(",")).then((list) => {
// console.log(list)
this.list = list;
if (this.timeout) {
--
Gitblit v1.9.3