From c3058aa6a82d57d29136d4b6c9ae8746d6ee0059 Mon Sep 17 00:00:00 2001 From: shenjianxing <”315615051@qq.com“> Date: Sat, 1 Mar 2025 12:52:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=A7=93=E5=90=8D=E5=92=8C?= =?UTF-8?q?=E5=AD=A6=E5=8F=B7=E4=B8=8D=E8=83=BD=E4=B8=BA=E7=A9=BA=E7=9A=84?= =?UTF-8?q?=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/UI/UIScore.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/UI/UIScore.cs b/Assets/Scripts/UI/UIScore.cs index 1b8d5ea4..f6f3bbb5 100644 --- a/Assets/Scripts/UI/UIScore.cs +++ b/Assets/Scripts/UI/UIScore.cs @@ -17,7 +17,10 @@ namespace QFramework.Example { if (string.IsNullOrEmpty(InputName.text) || string.IsNullOrEmpty(InputId.text)) { - Debug.LogError("ѧΪ"); + UITipWindowData data = new UITipWindowData(); + data.txt = "ѧΪ"; + data.btns.Add(new UITipWindowData.ItemData() { txt = "ȷ" }); + UIKit.OpenPanelAsync(canvasLevel: UILevel.PopUI, uiData: data).ToAction().Start(this); return; } @@ -39,7 +42,6 @@ namespace QFramework.Example DownLoad.interactable = false; AsposeHelper.Writer(GetScoreDataJson(), result => { - Debug.LogError("111"); DownLoad.interactable = true; }); #endif