From 9d1fadaf0e2abf8e04446580d8baadf7717ce0d1 Mon Sep 17 00:00:00 2001
From: dcc <dcc@163.com>
Date: Wed, 15 May 2024 15:09:57 +0800
Subject: [PATCH] 前端下单页面改成模范网站样式 包括颜色
---
src/components/list-quotation/index.vue | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/src/components/list-quotation/index.vue b/src/components/list-quotation/index.vue
index 2e30356..2d3c902 100644
--- a/src/components/list-quotation/index.vue
+++ b/src/components/list-quotation/index.vue
@@ -22,7 +22,7 @@
<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}.png` : require('@/assets/loading-default.png')"
+ :src="item.symbol ? `${HOST_URL}/wap/symbol/${item.symbol}.png` : require('@/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">
@@ -161,6 +161,7 @@
});
} else {
setStorage('symbol', item.symbol)
+ setStorage('close', item.close)
this.$router.push({
path: `/perpetualContract/${item.symbol}`
});
--
Gitblit v1.9.3