lcy
2026-02-11 95b17cef6cee31512fba11384bb64bd164898a0b
461 限时冲刺-客户端

1.元宝礼包,限购数字改亮绿
2.轮次数字居中
3.不同轮回衔接时,当前轮回结束后正确刷新界面
2个文件已修改
15 ■■■■ 已修改文件
Main/System/TimeRush/TimeRushGiftCell.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Main/System/TimeRush/TimeRushWin.cs 13 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Main/System/TimeRush/TimeRushGiftCell.cs
@@ -90,7 +90,7 @@
        titleText.text = storeConfig.Name;
        limitCountText.SetActive(!isFree);
        limitCountText.text = Language.Get("TimeRush08", UIHelper.AppendColor(remainNum == 0 ? TextColType.Red : TextColType.Green, Mathf.Max(0, remainNum).ToString(), true));
        limitCountText.text = Language.Get("TimeRush08", UIHelper.AppendColor(remainNum == 0 ? TextColType.Red : TextColType.LightGreen, Mathf.Max(0, remainNum).ToString(), true));
        bool isCanBuy = manager.IsCanBuyShop(id);
Main/System/TimeRush/TimeRushWin.cs
@@ -78,7 +78,14 @@
    {
        if (operation == OperationType.default47)
        {
            RefreshAll();
            var list = manager.GetTabIDList();
            if (list.IsNullOrEmpty())
            {
                DelayCloseWindow().Forget();
                return;
            }
            manager.nowTabId = list[0];
            CreateAll();
        }
    }
@@ -122,7 +129,7 @@
            return;
        int roundType = config.RoundType;
        int tabType = config.TabType;
        Display(id);
        tabScroller.m_Scorller.RefreshActiveCellViews();
        taskScroller.SetActive(tabType == 1);
@@ -139,7 +146,7 @@
            CreateGiftScroller(roundType);
            return;
        }
        Display(id);
    }
    void CreateAll()