123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /// #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 PartnerSbUpPanelCtrl : UIController<PartnerSbUpPanelVM>
- {
- protected override void OnEnable(object intent)
- {
- AddUIListenres();
- _pos = (int)intent;
- ShowUI();
- }
- protected override void OnDisable()
- {
- RemoveUIListenres();
- }
- #region UI事件
- private void AddUIListenres()
- {
- Context.AddListener(EventDefine.PartnerUpSelect, OnSelectUpSb);
- }
- private void RemoveUIListenres()
- {
- Context.RemoveListener(EventDefine.PartnerUpSelect, OnSelectUpSb);
- }
- private void OnSelectUpSb(int eventId, object args)
- {
- var id = (int)args;
- PartnersService.Instance.RequestPartnerUpNew(_pos, id);
- Context.ClosePanel();
- }
- #endregion
- private bool _init = false;
- private int _pos;
- public void Init()
- {
- if (_init)
- return;
- _init = true;
- VM.List.ListType = EGListType.Virtual;
- }
- public void ShowUI()
- {
- var list = PartnersData.Instance.PartnerList;
- var sbId = PartnersData.Instance.UpSbMap.GetValueOrDefault(_pos, 0);
- var dataList = new List<int>();
- foreach (var item in list)
- {
- if (item.Status > 0)
- continue;
- dataList.Add(item.TableId);
- }
- VM.List.BindDatas(dataList);
- }
- }
- }
|