diff --git a/src/views/workspace/index.vue b/src/views/workspace/index.vue
index 2af28e5..72444a8 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 }}
@@ -156,7 +156,7 @@
查询
@@ -431,6 +431,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)