From 7b25210909b9a0cf47ffafbca76311acfe6fe4be Mon Sep 17 00:00:00 2001 From: liaoxinyu Date: Tue, 9 Jun 2026 19:02:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=82=A1=E7=A5=A8=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/CommonHeader.vue | 3 + src/i18n/de.json | 33 ++ src/i18n/en.json | 33 ++ src/i18n/fra.json | 33 ++ src/i18n/he.json | 33 ++ src/i18n/it.json | 33 ++ src/i18n/jp.json | 33 ++ src/i18n/kor.json | 33 ++ src/i18n/pt.json | 33 ++ src/i18n/spa.json | 33 ++ src/i18n/tr.json | 33 ++ src/i18n/tw.json | 33 ++ src/router/index.js | 6 + src/views/ellasAlpha/index.vue | 583 ++++++++++++++++++++++++ src/views/exchangeStock/book-trades.vue | 11 +- 15 files changed, 961 insertions(+), 5 deletions(-) create mode 100644 src/views/ellasAlpha/index.vue diff --git a/src/components/CommonHeader.vue b/src/components/CommonHeader.vue index cc7b8e8..971a12a 100644 --- a/src/components/CommonHeader.vue +++ b/src/components/CommonHeader.vue @@ -46,6 +46,9 @@ + +
+
+ +
+

{{$t('automation.a1')}}

+

{{$t('automation.a2')}}

+
+ + +
+
+ + +
+
+
+
+ {{$t('automation.a5')}} + {{ currentAccount.total }} {{ currencyUnit }} +
+
+ {{$t('automation.a6')}} > +
+
+
+
+ {{$t('automation.a7')}} + {{ currentAccount.usable }} {{ currencyUnit }} +
+
+ {{$t('automation.a8')}} + {{ currentAccount.todayProfit }} {{ currencyUnit }} +
+
+ {{$t('automation.a9')}} + {{ currentAccount.totalProfit }} {{ currencyUnit }} +
+
+
+ +
+
+
+ + +
+ +
+
+ {{ mainTab === 'stock' ? $t('automation.a3') : $t('automation.a4') }} +
+
+ {{$t('automation.a12')}} +
+
+ + +
+
+ +
+ {{ mainTab === 'stock' ? $t('automation.a3') : $t('automation.a13') }} + {{$t('automation.a14')}} + {{$t('automation.a15')}} +
+ +
+ {{ mainTab === 'stock' ? $t('automation.a3') : $t('automation.a13') }} + {{$t('automation.a14')}} + {{$t('automation.a15')}} +
+
+
+
+
+ +
{{ item.symbol.charAt(0) }}
+
+
{{ item.name }}
+
{{ item.symbol }}
+
+
+
{{ item.price }}
+
+ {{ item.change > 0 ? '+' : '' }}{{ item.change }}% +
+
+
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + +
{{$t('automation.a16')}}{{$t('automation.a17')}}{{$t('automation.a18')}}{{$t('automation.a19')}}{{$t('automation.a20')}}{{$t('automation.a21')}}{{$t('automation.a22')}}{{$t('automation.a23')}}{{$t('automation.a24')}}{{$t('automation.a25')}}
{{$t('automation.a26')}}
+ + +
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/views/exchangeStock/book-trades.vue b/src/views/exchangeStock/book-trades.vue index f55cd13..a839aab 100644 --- a/src/views/exchangeStock/book-trades.vue +++ b/src/views/exchangeStock/book-trades.vue @@ -19,7 +19,7 @@
- + @@ -61,7 +61,7 @@
- + @@ -322,13 +322,13 @@ export default { // 给外边框添加不同的底色 &:nth-child(even) .progress .el-progress-bar__outer { - background: #F8F8FF; + background: #ffffff !important; // background: #f6f8f9; } &:nth-child(odd) .progress .el-progress-bar__outer { - background: #ffffff; + background: #ffffff !important; } } @@ -379,6 +379,7 @@ export default { #lightDepthChart { height: 305px; } + + \ No newline at end of file