diff --git a/Assets/ManagedResources/~Lua/Modules/Popup/GeneralRewardPopup.lua b/Assets/ManagedResources/~Lua/Modules/Popup/GeneralRewardPopup.lua index a346315227..0106f89d5b 100644 --- a/Assets/ManagedResources/~Lua/Modules/Popup/GeneralRewardPopup.lua +++ b/Assets/ManagedResources/~Lua/Modules/Popup/GeneralRewardPopup.lua @@ -139,6 +139,7 @@ function this.SetScrollPre2(root,data) goBtn:GetComponent("Button").interactable=s~=0 if s==0 then -- goText.text="已领取" + mask:GetComponent("Image").sprite = Util.LoadSprite("s_slbz_yilingqu_zh") mask:SetActive(true) goBtn:SetActive(false) getBtn:SetActive(false) diff --git a/Assets/ManagedResources/~Lua/Modules/Ranking/RankingSingleListPanel.lua b/Assets/ManagedResources/~Lua/Modules/Ranking/RankingSingleListPanel.lua index c5c1e8d590..2ea4f1d3bb 100644 --- a/Assets/ManagedResources/~Lua/Modules/Ranking/RankingSingleListPanel.lua +++ b/Assets/ManagedResources/~Lua/Modules/Ranking/RankingSingleListPanel.lua @@ -413,8 +413,15 @@ function this.SetInfoShow(go,data,rankType,Value0) if Value0 then Value0:GetComponent("Text").text = ""..data.guildName.."" end - Util.GetGameObject(go,"trial/Text"):GetComponent("Text").text = Language[11697]..data.rankInfo.param1 - + -- Util.GetGameObject(go,"trial/Text"):GetComponent("Text").text = Language[11697]..data.rankInfo.param1 + Util.GetGameObject(go,"trial/Text"):SetActive(true) + if GetCurLanguage() == 2 then + Util.GetGameObject(go,"trial/tip"):GetComponent("Text").fontSize = 26 + else + Util.GetGameObject(go,"trial/tip"):GetComponent("Text").fontSize = 38 + end + Util.GetGameObject(go,"trial/tip"):GetComponent("Text").text = Language[11697] + Util.GetGameObject(go,"trial/Text"):GetComponent("Text").text = data.rankInfo.param1 end end end