【IOS提审】链接提审服时,部分按钮跳转到妖晶充值

dev_chengFeng
JLIOSM1 2021-07-21 11:33:09 +08:00
parent 557d19910d
commit c2dfe0ee92
2 changed files with 12 additions and 3 deletions

View File

@ -1,4 +1,4 @@
--[[
--[[
* @ClassName FirstRechargePanel
* @Description
* @Date 2019/6/3 11:45
@ -288,7 +288,11 @@ function FirstRechargePanel:OnRechargeBtnClicked()
return
end
self:ClosePanel()
JumpManager.GoJump(36008)
if SERVER_VERSION == 1 then
JumpManager.GoJump(36010)
else
JumpManager.GoJump(36008)
end
end
function FirstRechargePanel:SetTabRedPointStatus(tabIndex)

View File

@ -1,4 +1,4 @@
UpView = {}
UpView = {}
local ArenaSetting = ConfigManager.GetConfig(ConfigName.ArenaSetting)
local StoreTypeConfig = ConfigManager.GetConfig(ConfigName.StoreTypeConfig)
local _ItemMaxNum = 4
@ -324,6 +324,11 @@ function UpView:RechargeType(_type)
elseif _type == UpViewRechargeType.HeroExchange then--神将置换
UIManager.OpenPanel(UIName.ElementDrawCardPanel)
elseif _type == UpViewRechargeType.DemonCrystal then
LogError(tostring(SERVER_VERSION))
if SERVER_VERSION == 1 then
JumpManager.GoJump(36010)
return
end
-- 充值商店
if not ShopManager.IsActive(SHOP_TYPE.SOUL_STONE_SHOP) then
PopupTipPanel.ShowTip(Language[10422])