diff --git a/Assets/ManagedResources/~Lua/Modules/FirstRecharge/FirstRechargePanel.lua b/Assets/ManagedResources/~Lua/Modules/FirstRecharge/FirstRechargePanel.lua index 1a962162bf..2a540e60e5 100644 --- a/Assets/ManagedResources/~Lua/Modules/FirstRecharge/FirstRechargePanel.lua +++ b/Assets/ManagedResources/~Lua/Modules/FirstRecharge/FirstRechargePanel.lua @@ -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) diff --git a/Assets/ManagedResources/~Lua/View/UpView.lua b/Assets/ManagedResources/~Lua/View/UpView.lua index 1174f03531..9122aaee9d 100644 --- a/Assets/ManagedResources/~Lua/View/UpView.lua +++ b/Assets/ManagedResources/~Lua/View/UpView.lua @@ -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])