From 8449465349a8fe2a923016fb8d1cd5bd68cacb82 Mon Sep 17 00:00:00 2001 From: wood Date: Wed, 25 Oct 2023 18:43:51 +0800 Subject: [PATCH] update --- static/js.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/static/js.js b/static/js.js index c4ecb3a..65b7922 100644 --- a/static/js.js +++ b/static/js.js @@ -109,19 +109,19 @@ async function checkBilling(apiKey, apiUrl) { if (subscriptionData.plan.id.includes('payg')) { switch (subscriptionData.billing_mechanism) { case 'advance': - isSubscrible = '预付费'; + isSubscrible = '✅预付费'; break; case 'arrears': - isSubscrible = '已欠费'; + isSubscrible = '✅已欠费'; break; case null: - isSubscrible = '后付费'; + isSubscrible = '✅后付费'; break; default: - isSubscrible = ''; + isSubscrible = '✅'; } } else { - isSubscrible = ''; + isSubscrible = '❌'; } } catch (error) { console.error(error);