From 87d8bc7a9c5414411bf1f3004e314589b1b93a2e Mon Sep 17 00:00:00 2001 From: CounterFire2023 <136581895+CounterFire2023@users.noreply.github.com> Date: Thu, 27 Jun 2024 12:51:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=90=88=E7=BA=A6,=20?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=8E=B7=E5=8F=96=E7=99=BD=E5=8D=95=E6=95=B0?= =?UTF-8?q?=E9=87=8F=E7=9A=84=E6=96=B9=E6=B3=95,=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E7=99=BD=E5=8D=95=E6=8F=90=E7=A4=BA=E6=96=87=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/view/mintIndex.vue | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/src/view/mintIndex.vue b/src/view/mintIndex.vue index 34b363d..a0b3b8a 100644 --- a/src/view/mintIndex.vue +++ b/src/view/mintIndex.vue @@ -188,10 +188,10 @@ -
+
{{statusTxt}}
-
{{statusTxt}}
+
{{statusTxt}}
-
+
{{statusTxt}}
-
{{statusTxt}}
+
{{statusTxt}}
-
+
{{statusTxt}}
-
{{statusTxt}}
+
{{statusTxt}}
{ if (getAddress.value) { const [num1, num2, minted] = await fetchWLCount(getAddress.value) if (num1 > 0 && num2 > 0) { - statusTxt.value = 'Eligible for minting in Guaranteed and FCFS rounds' + statusTxt.value = 'Guaranteed & FCFS Minting Eligible' } else if (num1 > 0) { - statusTxt.value = 'Boom! you are on the Guaranteed Whitelist' + statusTxt.value = 'Congrats!Guaranteed Whitelisted' } else if (num2 > 0) { - statusTxt.value = 'Congrats,you are on the fcfs whitelist' + statusTxt.value = 'Congrats!FCFS Whitelisted!' } else { - statusTxt.value = 'Regrettably, you are not on the whitelist' + statusTxt.value = 'Not on the whitelist' } let whiteAmount = num1 - minted // 第2阶段开启后, 可mint总数等于必中白和幸运白的总数 @@ -2857,4 +2857,12 @@ onMounted(() => { } } } +.nowrap { + text-wrap: nowrap; + white-space: nowrap; + span { + text-wrap: nowrap; + white-space: nowrap; + } +}