123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /// #pkgName FGUI包名
- /// #panelName UIPanel名字
- /// #UIName = $"{#pkgName}{#panelName}" UIKey名字
- /// 该脚本由模板创建
- /// created by cb 2024
- using System.Collections.Generic;
- using FairyGUI;
- using FL.Data;
- using XGame.Framework.UI;
- namespace FL.FGUI
- {
- /// <summary>
- /// UI逻辑处理类
- /// </summary>
- /// <typeparam name=""></typeparam>
- public partial class PartnerEpiChangePanelCtrl : UIController<PartnerEpiChangePanelVM>
- {
- protected override void OnEnable(object intent)
- {
- sbId = (int)intent;
- AddUIListenres();
- InitView();
- UpView();
- }
- protected override void OnDisable()
- {
- RemoveUIListenres();
- }
- #region UI事件
- private void AddUIListenres()
- {
- EventSingle.Instance.AddListener(EventDefine.EpigraphChangeListClick, OnClickItem);
- }
- private void RemoveUIListenres()
- {
- EventSingle.Instance.RemoveListener(EventDefine.EpigraphChangeListClick, OnClickItem);
- }
- private void OnClickItem(int eventId, object args)
- {
- if (args is not int id)
- return;
- if (id == sbId)
- return;
- EpigraphService.Instance.RequestEpiInset(sbId, id);
- }
- #endregion
- #region 属性
- private bool isInit = false;
- /// <summary>
- /// 圣兵id
- /// </summary>
- private int sbId;
- #endregion
- #region 页面
- private void InitView()
- {
- if (isInit)
- return;
- isInit = true;
- VM.List.ListType = EGListType.Virtual;
- }
- private void UpView()
- {
- var epiList = EpigraphData.Instance.GetEpiList();
- var list = new List<EpiChangeListData>();
- foreach (var epi in epiList)
- {
- list.Add(new EpiChangeListData(sbId, epi));
- }
- VM.List.BindDatas(list);
- }
- #endregion
- }
- }
|