12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /// #pkgName FGUI包名
- /// #panelName UIPanel名字
- /// #UIName = $"{#pkgName}{#panelName}" UIKey名字
- /// 该脚本由模板创建
- /// created by cb 2024
- using FairyGUI;
- using FL.Data;
- using XGame.Framework.UI;
- namespace FL.FGUI
- {
- /// <summary>
- /// UI逻辑处理类
- /// </summary>
- /// <typeparam name=""></typeparam>
- public partial class PartnerPlanRenamePanelCtrl : UIController<PartnerPlanRenamePanelVM>
- {
- private int _planId;
- protected override void OnEnable(object intent)
- {
- _planId = (int)intent;
- AddUIListenres();
- }
- protected override void OnDisable()
- {
- RemoveUIListenres();
- }
- #region UI事件
- private void AddUIListenres()
- {
- VM.ConfirmBtn.onClick.Add(OnConfirm);
- }
- private void RemoveUIListenres()
- {
- VM.ConfirmBtn.onClick.Remove(OnConfirm);
- }
- private void OnConfirm(EventContext eventContext)
- {
- var str = VM.Input.text;
- if (str.Length > 0)
- {
- PartnersService.Instance.RequestRenamePlan(_planId, str);
- Context.ClosePanel();
- }
- else
- {
- Context.ShowTips(StringDefine.RenameEmptyStrTips);
- }
- }
- #endregion
- }
- }
|