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/UIBase/UIJumpManager.cs |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/Main/System/UIBase/UIJumpManager.cs b/Main/System/UIBase/UIJumpManager.cs
index 7667b1c..a3b386f 100644
--- a/Main/System/UIBase/UIJumpManager.cs
+++ b/Main/System/UIBase/UIJumpManager.cs
@@ -57,7 +57,15 @@
 				}
 				else
 				{
-					StoreModel.Instance.selectStoreFuncType = (StoreFunc)StoreConfig.Get(StoreModel.Instance.jumpShopID).ShopType;
+					var storeConfig = StoreConfig.Get(StoreModel.Instance.jumpShopID);
+					if (storeConfig.ShopType == (int)StoreFunc.HeroSkin &&
+					    !StoreModel.Instance.IsHeroSkinShopOpenByStoreConfig(storeConfig))
+					{
+						SysNotifyMgr.Instance.ShowTip("JumpSkinErr");
+						StoreModel.Instance.jumpShopID = 0;
+						return;
+					}
+					StoreModel.Instance.selectStoreFuncType = (StoreFunc)storeConfig.ShopType;
 				}
 			}
 		}
@@ -162,4 +170,4 @@
 			ui?.ClickFuncBtn(config.TabIndex);
 		}
 	}
-}
\ No newline at end of file
+}

--
Gitblit v1.8.0