From f9ac8a931b0322e546b2db842808e699260d8228 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9C=E8=99=9E=E6=B8=A0=E6=88=90=E2=80=9D?= <“yuqucheng2006@qq.com”> Date: Mon, 27 Jul 2026 13:33:31 +0800 Subject: [PATCH] =?UTF-8?q?fix(HomePageCtrl):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E8=9A=8A=E5=AD=90=E6=95=B0=E9=87=8F=E6=8F=90=E7=A4=BA=E7=9A=84?= =?UTF-8?q?=E5=8F=98=E9=87=8F=E6=8B=BC=E6=8E=A5=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将硬编码的aimMosquitoDataCount字符串替换为实际变量值,修正数量提示显示错误 --- Assets/Scripts/UI/Pages/HomePage/HomePageCtrl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/UI/Pages/HomePage/HomePageCtrl.cs b/Assets/Scripts/UI/Pages/HomePage/HomePageCtrl.cs index 7f3691b..ad64ef9 100644 --- a/Assets/Scripts/UI/Pages/HomePage/HomePageCtrl.cs +++ b/Assets/Scripts/UI/Pages/HomePage/HomePageCtrl.cs @@ -1441,7 +1441,7 @@ namespace Kill.UI.Pages if(waitToPostMosquitoDatas!=null) StopCoroutine(waitToPostMosquitoDatas); if(mosquitoDatas.Count<=aimMosquitoDataCount) - ToastUI.ShowText($"{LanguageManager.Instance.GetLanguage("100309")} {mosquitoDatas.Count}/aimMosquitoDataCount"); + ToastUI.ShowText($"{LanguageManager.Instance.GetLanguage("100309")} {mosquitoDatas.Count}/{aimMosquitoDataCount}"); if(mosquitoDatas.Count>=aimMosquitoDataCount&&aimMosquitoDataCount>0) { LoadingUI.Hide();