From c5434249bcc3afea75ce2d51f69ec3b115892d05 Mon Sep 17 00:00:00 2001 From: ZhangYong Date: Thu, 21 Aug 2025 15:05:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E5=8F=B0=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E7=AD=9B=E9=80=89=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/workspace/index.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/views/workspace/index.vue b/src/views/workspace/index.vue index 90ae110..de19cab 100644 --- a/src/views/workspace/index.vue +++ b/src/views/workspace/index.vue @@ -43,7 +43,7 @@
永久金币:{{ currentPermanent / 100 }}
免费金币:{{ currentFree / 100 }}
-
[六月到期|{{ currentFreeJune / 100 }}]     +
[六月到期|{{ currentFreeJune / 100 }}]   [十二月到期|{{ currentFreeDecember / 100 }}]
任务金币:{{ currentTask / 100 }}
@@ -157,7 +157,7 @@ 查询
@@ -433,6 +433,12 @@ const processData = (data) => { firstRecharge.value = summary.firstRecharge } +//无法选择的时间 +const disabledDate = (time) => { + const limitDate = new Date(2025, 0, 1); + return time.getTime() < limitDate.getTime(); +} + // 获取市场列表 const getMarkets = async () => { console.log("adminData", adminData.value.account)