12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /// #pkgName FGUI包名
- /// #panelName UIPanel名字
- /// #UIName = $"{#pkgName}{#panelName}" UIKey名字
- /// 该脚本由模板创建
- /// created by cb 2024
- using FairyGUI;
- using FL.Data;
- using XGame.Database;
- using XGame.Framework.UI;
- namespace FL.FGUI
- {
- /// <summary>
- /// UI逻辑处理类
- /// </summary>
- /// <typeparam name=""></typeparam>
- public partial class CommonComCurrencyNestedCtrl : UIController<CommonComCurrencyNestedVM>
- {
- protected override void OnEnable(object intent)
- {
- AddUIListenres();
- }
- protected override void OnDisable()
- {
- RemoveUIListenres();
- }
- #region UI事件
- private void AddUIListenres()
- {
- }
- private void RemoveUIListenres()
- {
- }
- #endregion
- public void ShowUI(int currencyId, long count)
- {
- var currencyInfo = ItemTableRepo.Get(currencyId);
- if (currencyInfo != null) VM.CurrencyIcon.icon = currencyInfo?.Icon;
- VM.CurrencyLabel.text = count.ToString();
- }
- public void ShowCostUI(int costId, long costVal)
- {
- var costItemInfo = ItemTableRepo.Get(costId);
- if (costItemInfo != null) VM.CurrencyIcon.icon = costItemInfo?.Icon;
- long count = ItemData.Instance.GetItemNum(costId);
- VM.CurrencyLabel.text = $"{count}/{costVal}";
- }
- }
- }
|