|
@@ -135,12 +135,14 @@ namespace GFGGame
|
|
int index = (int)obj.data;
|
|
int index = (int)obj.data;
|
|
if (RoleInfoManager.GetPosType(index) == MonthCardType.Gold && !RoleDataManager.CheckIsMonthCardOpenByType(MonthCardType.Gold))
|
|
if (RoleInfoManager.GetPosType(index) == MonthCardType.Gold && !RoleDataManager.CheckIsMonthCardOpenByType(MonthCardType.Gold))
|
|
{
|
|
{
|
|
- PromptController.Instance.ShowFloatTextPrompt("金卡开启");
|
|
|
|
|
|
+ // PromptController.Instance.ShowFloatTextPrompt("金卡开启");
|
|
|
|
+ ViewManager.Show<StoreView>(new object[] { ConstStoreTabId.STORE_MONTH_CARD, ConstStoreSubId.STORE_MONTH_GLOAD_CARD });
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
if (RoleInfoManager.GetPosType(index) == MonthCardType.BlackGold && !RoleDataManager.CheckIsMonthCardOpenByType(MonthCardType.BlackGold))
|
|
if (RoleInfoManager.GetPosType(index) == MonthCardType.BlackGold && !RoleDataManager.CheckIsMonthCardOpenByType(MonthCardType.BlackGold))
|
|
{
|
|
{
|
|
- PromptController.Instance.ShowFloatTextPrompt("黑金卡开启");
|
|
|
|
|
|
+ // PromptController.Instance.ShowFloatTextPrompt("黑金卡开启");
|
|
|
|
+ ViewManager.Show<StoreView>(new object[] { ConstStoreTabId.STORE_MONTH_CARD, ConstStoreSubId.STORE_MONTH_BLACK_CARD });
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
|