From c2dfe0ee92fa4e91a346f37c82e9a586ee59d8b5 Mon Sep 17 00:00:00 2001 From: JLIOSM1 <774727341@qq.com> Date: Wed, 21 Jul 2021 11:33:09 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90IOS=E6=8F=90=E5=AE=A1=E3=80=91?= =?UTF-8?q?=E9=93=BE=E6=8E=A5=E6=8F=90=E5=AE=A1=E6=9C=8D=E6=97=B6=EF=BC=8C?= =?UTF-8?q?=E9=83=A8=E5=88=86=E6=8C=89=E9=92=AE=E8=B7=B3=E8=BD=AC=E5=88=B0?= =?UTF-8?q?=E5=A6=96=E6=99=B6=E5=85=85=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../~Lua/Modules/FirstRecharge/FirstRechargePanel.lua | 8 ++++++-- Assets/ManagedResources/~Lua/View/UpView.lua | 7 ++++++- 2 files changed, 12 insertions(+), 3 deletions(-) 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])