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/list-quotation/index.vue | 17 +++++++++--------
1 files changed, 9 insertions(+), 8 deletions(-)
diff --git a/src/components/list-quotation/index.vue b/src/components/list-quotation/index.vue
index e810fac..a6d1fc6 100644
--- a/src/components/list-quotation/index.vue
+++ b/src/components/list-quotation/index.vue
@@ -70,13 +70,12 @@
<p class="flex flex-col" style="margin-left: 5px">
<span class="flex items-end font-32 flex items-center" s>
<span class="textColor font-600 font-30">
- {{ (item.symbol && item.symbol.toUpperCase()) || "--" }}
+ {{ item.symbol | _symbolName }}
+ <!-- {{ (item.symbol && item.symbol.toUpperCase()) || "--" }} -->
</span>
<span class="font-24" style="position: relative; top: 1px">
- /{{
- (item.name && item.name.split("/")[1]) || "--"
- }}</span
- >
+ /{{ (item.name && item.name.split("/")[1]) || "--" }}
+ </span>
</span>
<span class="font-24 textNew1">{{
@@ -132,9 +131,10 @@
<div class="anniu"></div>
<p class="flex flex-col" style="margin-left: 5px">
<span class="flex items-end font-32 flex items-center">
- <span class="textColor font-600 font-30">{{
- (item.symbol && item.symbol.toUpperCase()) || "--"
- }}</span>
+ <span class="textColor font-600 font-30">
+ {{ item.symbol | _symbolName }}
+ <!-- {{ (item.symbol && item.symbol.toUpperCase()) || "--" }} -->
+ </span>
<span class="font-24" style="position: relative; top: 1px">
/{{ (item.name && item.name.split("/")[1]) || "--" }}
</span>
@@ -248,6 +248,7 @@
},
onItemClick(item) {
if (this.tabActive == 2) {
+ setStorage("tradeSymbol", item.symbol);
//现货
this.$router.push({
path: `/trade/${item.symbol}`,
--
Gitblit v1.9.3