소스 검색

限购礼包数量展示

zhaoyang 3 년 전
부모
커밋
5e3e503781
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      GameClient/Assets/Game/HotUpdate/Views/RechargeStore/GiftBagBuyView.cs

+ 1 - 1
GameClient/Assets/Game/HotUpdate/Views/RechargeStore/GiftBagBuyView.cs

@@ -58,7 +58,7 @@ namespace GFGGame
             }
             int buyNum = RechargeDataManager.Instance.GetGiftBuyNumById(cfg.id);
             _ui.m_txtLimit.text = string.Format("{0}({1}/{2})", RechargeDataManager.Instance.refreshType[cfg.refreshType], StringUtil.GetColorText(buyNum.ToString(), "#DA8870"), cfg.maxBuyNum);
-            if (cfg.refreshType == RefreshType.NONE) _ui.m_txtLimit.text = "永久限购";
+            // if (cfg.refreshType == RefreshType.NONE) _ui.m_txtLimit.text = "永久限购";
             _ui.m_txtEndTime.text = RechargeDataManager.Instance.GetEndTime(cfg.id);
             _ui.m_grpEndTime.visible = cfg.endTime != "";