123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /// #pkgName FGUI包名
- /// #panelName UIPanel名字
- /// #UIName = $"{#pkgName}{#panelName}" UIKey名字
- /// 该脚本由模板创建
- /// created by cb 2024
- using FairyGUI;
- using XGame.Database;
- using XGame;
- using XGame.Framework.UI;
- namespace FL.FGUI
- {
- /// <summary>
- /// UI逻辑处理类
- /// </summary>
- /// <typeparam name=""></typeparam>
- public partial class PartnerMwSetBaseCtrl : UIController<PartnerMwSetBaseVM>
- {
- protected override void OnEnable(object intent)
- {
- AddUIListenres();
- }
- protected override void OnDisable()
- {
- RemoveUIListenres();
- }
- #region UI事件
- private void AddUIListenres()
- {
- }
- private void RemoveUIListenres()
- {
- }
- #endregion
- public void SetData(int mwId, int sbId, bool showStar)
- {
- if (sbId <= 0)
- return;
- var sbTable = PartnerTableRepo.Get(sbId);
- if (sbTable == null)
- {
- Log.Debug($"圣兵不存在id:{sbId}");
- return;
- }
- VM.EmptyDiLoader.url = AddressableDefine.EpigraphEmptyPz((int)sbTable.Quality);
- if (mwId > 0)
- {
- var table = EpigraphTableRepo.Get(mwId);
- if (table == null)
- {
- Log.Debug($"铭文不存在id:{mwId}");
- return;
- }
- VM.InSet.selectedIndex = 0;
- VM.EpiIcon.Enable(null);
- VM.EpiIcon.Ctrl.SetEpiIcon(mwId, showStar);
- }
- else
- {
- VM.InSet.selectedIndex = 1;
- VM.EpiIcon.Disable();
- }
- }
- }
- }
|