Browse Source

茶话会提交装扮弹窗确认

huangxiaoyue 1 year ago
parent
commit
ad2736a510

+ 6 - 1
GameClient/Assets/Game/HotUpdate/Views/DressUp/DressUpFightView.cs

@@ -276,7 +276,12 @@ namespace GFGGame
         //茶话会提交搭配
         private void OnClickBtnSubmission()
         {
-            ChangeTeapartyDressup();
+            AlertUI.Show("是否确认提交本次搭配?")
+            .SetLeftButton(true, "取消")
+            .SetRightButton(true, "确认", (object param) =>
+            {
+                ChangeTeapartyDressup();
+            });
         }
 
         private async void ChangeTeapartyDressup()