From b9d9196fb7d59585f87d8dbb54dd5205bde5eba9 Mon Sep 17 00:00:00 2001 From: wood chen <95951386+woodchen-ink@users.noreply.github.com> Date: Sat, 10 Jun 2023 13:13:12 +0800 Subject: [PATCH] Update index.html MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改图标,保持一致 --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 93f283c..1a3a737 100644 --- a/index.html +++ b/index.html @@ -426,7 +426,7 @@ const gpt4CheckResponse = await fetch(gpt4Check, { headers }); const gpt4CheckData = await gpt4CheckResponse.json(); let GPT4CheckResult = Array.isArray(gpt4CheckData.data) && gpt4CheckData.data.some(item => item.id.includes('gpt-4')) ? '✅' : '❌'; - let isSubscrible = subscriptionData.plan.id.includes('payg') ? '🟢' : '🔴'; + let isSubscrible = subscriptionData.plan.id.includes('payg') ? '✅' : '❌'; if (totalAmount > 20) { startDate = subDate; @@ -440,7 +440,7 @@ const totalUsage = usageData.total_usage / 100; let remaining; if (currentDate > expiryDate) { - remaining = "🔴过期"; + remaining = "❌过期"; } else { remaining = subscriptionData.system_hard_limit_usd - totalUsage; }