From 1136b8d80116008cc1f8da51f0f53dc746d52f86 Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Sun, 12 Oct 2025 15:41:09 +0800
Subject: [PATCH] 1
---
src/components/Transform/perpetual-open/index.vue | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/components/Transform/perpetual-open/index.vue b/src/components/Transform/perpetual-open/index.vue
index 34797f5..9bbe549 100644
--- a/src/components/Transform/perpetual-open/index.vue
+++ b/src/components/Transform/perpetual-open/index.vue
@@ -260,7 +260,7 @@
<div v-if="showType == 0 || showType == 2" class="w-290 flex justify-between pt-1 font-26"
v-for="(item, index) in redData" :key="item + index" @click="onQuickPrice(item.price)" :style="{
background:
- `linear-gradient(to right,${THEME == 'dark' ? '#131A2E' : '#fff'
+ `linear-gradient(to right,${THEME == 'dark' ? '#131A2E' : '#555'
} 0%` +
(1 - item.amount / greenData[greenData.length - 1].amount) *
100 +
@@ -303,7 +303,7 @@
<div v-if="showType == 0 || showType == 1" class="w-290 flex justify-between pt-1 font-26"
v-for="(item, index) in greenData" :key="index" @click="onQuickPrice(item.price)" :style="{
background:
- `linear-gradient(to right,${THEME == 'dark' ? '#131A2E' : '#fff'
+ `linear-gradient(to right,${THEME == 'dark' ? '#131A2E' : '#555'
} 0%` +
(1 - item.amount / greenData[greenData.length - 1].amount) *
100 +
@@ -594,7 +594,7 @@
queryType: 'cryptos',
assetObj: {}, // 总资产估值数据对象
locationList: [
- { title: this.$t('逐仓'), type: 0 },
+ // { title: this.$t('逐仓'), type: 0 },
{ title: this.$t('全仓'), type: 1 },
],
locationShow: false,
--
Gitblit v1.9.3