| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 | 
							- using ET;
 
- using FairyGUI;
 
- using Hutool;
 
- using System.Collections.Generic;
 
- using UI.League;
 
- using UnityEngine;
 
- namespace GFGGame
 
- {
 
-     public class LeagueTeaPartyOverView : BaseWindow
 
-     {
 
-         private UI_LeagueTeaPartyOverUI _ui;
 
-         private List<UI_comTeaPartyItem> teaPartyItemList = new List<UI_comTeaPartyItem>();
 
-         public override void Dispose()
 
-         {
 
-             if (_ui != null)
 
-             {
 
-                 _ui.Dispose();
 
-                 _ui = null;
 
-             }
 
-             base.Dispose();
 
-         }
 
-         protected override void OnInit()
 
-         {
 
-             base.OnInit();
 
-             packageName = UI_LeagueTeaPartyOverUI.PACKAGE_NAME;
 
-             _ui = UI_LeagueTeaPartyOverUI.Create();
 
-             this.viewCom = _ui.target;
 
-             isfullScreen = true;
 
-             _ui.m_loaBg.url = ResPathUtil.GetBgImgPath("zjm_2_2");
 
-             _ui.m_btnBack.onClick.Add(OnBtnBackClick);
 
-           
 
-         }
 
-         protected override void AddEventListener()
 
-         {
 
-             base.AddEventListener();
 
-         }
 
-         protected override void OnShown()
 
-         {
 
-             base.OnShown();
 
-         }
 
-         protected override void OnHide()
 
-         {
 
-             base.OnHide();
 
-         }
 
-         protected override void RemoveEventListener()
 
-         {
 
-             base.RemoveEventListener();
 
-         }
 
-         
 
-         private void OnBtnBackClick()
 
-         {
 
-             ViewManager.GoBackFrom(typeof(LeagueView).FullName);
 
-         }
 
-     }
 
- }
 
 
  |