From 313d66fe290bc5080983519d5e7e2d7da13a9034 Mon Sep 17 00:00:00 2001 From: songtongtong <123456@163.com> Date: Thu, 17 Jul 2025 10:56:28 +0800 Subject: [PATCH 1/3] =?UTF-8?q?style(zhongchou):=20=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E6=A0=BC=E5=BC=8F=EF=BC=8C=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E5=8F=AF=E8=AF=BB=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/zhongchou/index.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/zhongchou/index.vue b/src/views/zhongchou/index.vue index 2208c03..9f4d029 100644 --- a/src/views/zhongchou/index.vue +++ b/src/views/zhongchou/index.vue @@ -1,6 +1,8 @@ From 1b5fcbd4fc9038051d1fde8bcf2f104bec636e14 Mon Sep 17 00:00:00 2001 From: songtongtong <123456@163.com> Date: Thu, 17 Jul 2025 11:00:15 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=BC=97=E7=AD=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/zhongchou/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/zhongchou/index.vue b/src/views/zhongchou/index.vue index 9f4d029..c0f70f7 100644 --- a/src/views/zhongchou/index.vue +++ b/src/views/zhongchou/index.vue @@ -1,7 +1,7 @@ From 0643c8cd8497e589e0526145587929cae523af8e Mon Sep 17 00:00:00 2001 From: songtongtong <123456@163.com> Date: Sat, 19 Jul 2025 09:25:37 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/zhongchou/index.vue | 291 ++++++++++++++++++++++++++++++++++++++---- 1 file changed, 263 insertions(+), 28 deletions(-) diff --git a/src/views/zhongchou/index.vue b/src/views/zhongchou/index.vue index 065385e..7dcdc8d 100644 --- a/src/views/zhongchou/index.vue +++ b/src/views/zhongchou/index.vue @@ -24,19 +24,28 @@
-
-
-
-
+
{{ time }}
+
+
+
+ 小火箭 +
+

距美股实时数据

-

还剩15分钟

+

还剩6分钟

@@ -68,15 +77,24 @@

距港股实时数据

-

还剩6分钟

+

还剩9分钟

-
+
+
+ 小火箭 +
-
+
{{ time }}
@@ -103,11 +121,10 @@

1. 活动时间为2025年7月26日-2025年8月5日。

2. 每人每天有3个活动助力参与机会。

-

3. 助力时间为15分钟,每一个人参与助力,即可时间

-

分钟!

+

3. 助力时间为15分钟,每一个人参与助力,即可时间分钟!

4. 助力成功后,平台服务市场将获取实时数据!

-

5. 平台对数据众筹上线后,您的方案数据将优化成对应

-

大数据的实时数据优化参考。

+

5. 平台对数据众筹上线后,您的方案数据将优化成对应大数据的实时数据优化

+

参考。

@@ -125,6 +142,10 @@ const usBoostStatus = ref(false) // 美股助力状态 const hkBoostStatus = ref(false) // 港股助力状态 const showRulesModal = ref(false) // 活动规则弹窗显示状态 +// 进度状态 - 倒计时逻辑:数值越小,温度计越高 +const usProgress = ref(40) // 美股进度 (40% = 还剩9分钟) +const hkProgress = ref(60) // 港股进度 (60% = 还剩6分钟) + const handleAreaClick = (area) => { if (activeArea.value === area) { activeArea.value = null @@ -151,6 +172,13 @@ const showRules = () => { const hideRules = () => { showRulesModal.value = false } + +// 测试进度变化函数(可以删除) +const testProgressChange = () => { + // 模拟倒计时进度变化:数值增加,温度计升高 + usProgress.value = Math.min(100, usProgress.value + 10) + hkProgress.value = Math.min(100, hkProgress.value + 10) +}