From 597d72e828d880b475e2441dcf0731dfc3417126 Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期三, 10 十二月 2025 16:26:47 +0800
Subject: [PATCH] 385 战斗系统 战斗结算详情界面
---
Main/System/Settlement/BattleVictoryWin.cs | 12 +++++++++---
1 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/Main/System/Settlement/BattleVictoryWin.cs b/Main/System/Settlement/BattleVictoryWin.cs
index e6b3f8e..fc93fd1 100644
--- a/Main/System/Settlement/BattleVictoryWin.cs
+++ b/Main/System/Settlement/BattleVictoryWin.cs
@@ -1,9 +1,6 @@
-using System;
using System.Collections.Generic;
using Cysharp.Threading.Tasks;
-using LitJson;
using UnityEngine;
-using UnityEngine.UI;
// 銆愭垬鏂楃粨绠椼��
// 褰撴敹鍒� // B4 20 鍥炲悎鍒舵垬鏂楃姸鎬� #tagMCTurnFightState State 涓� 4-缁撶畻锛屾椂锛屼唬琛ㄦ湰鍦烘垬鏂楀凡缁撴潫骞剁粨绠�
@@ -74,8 +71,17 @@
{
[SerializeField] ScrollerController scroller;
+ [SerializeField] ButtonEx detailBtn;
string battleName = BattleConst.StoryBossBattleField; //缁戞鎴樺満灏变笉閫氱敤浜嗘牴鎹儏鍐典慨鏀�
+ protected override void InitComponent()
+ {
+ detailBtn.SetListener(() =>
+ {
+ BattleSettlementManager.Instance.OpenBattleDetailWin(battleName);
+ });
+ }
+
protected override void OnPreOpen()
{
scroller.OnRefreshCell += OnRefreshCell;
--
Gitblit v1.8.0