From 16dba0ff4d2eed7f5a4a7c37640f158ee9f73d8c Mon Sep 17 00:00:00 2001
From: lcy <1459594991@qq.com>
Date: 星期五, 05 六月 2026 19:22:43 +0800
Subject: [PATCH] 669 子 【武将】武将系统 / 时装新增开服天数显示入口字段
---
Main/System/Store/SkinStoreLineCell.cs | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/Main/System/Store/SkinStoreLineCell.cs b/Main/System/Store/SkinStoreLineCell.cs
index af2f769..df3cf6f 100644
--- a/Main/System/Store/SkinStoreLineCell.cs
+++ b/Main/System/Store/SkinStoreLineCell.cs
@@ -10,7 +10,16 @@
public void Display(int index)
{
- var list = StoreModel.Instance.GetTimeValidStoreDatas(StoreFunc.HeroSkin);
+ var list = StoreModel.Instance.GetTimeValidHeroSkinStoreDatas();
+ if (list == null)
+ {
+ for (int i = 0; i < storeCells.Length; i++)
+ {
+ storeCells[i].SetActive(false);
+ }
+
+ return;
+ }
for (int i = 0; i < storeCells.Length; i++)
{
--
Gitblit v1.8.0