zhangjiannan 2025-04-16 13:35:16 +08:00
parent 3f8f389d6a
commit fcba65b516
3 changed files with 13 additions and 7 deletions

View File

@ -2528,6 +2528,12 @@ RANK_TYPE = {
SoulSign2 = 100103, --魂印排行榜(冲榜)
Level_chong = 1003, --关卡排行榜(冲榜)
FightValue_chong = 10022, --战力排行榜(冲榜)
DaijinquanRank_chong = 100201, --代金券排行榜(冲榜)
YingxiongRank_chong = 100202, --英雄召唤排行榜(冲榜)
FabaoRank_chong = 100203, --法宝召唤排行榜(冲榜)
XunxianRank_chong = 100204, --寻仙召唤排行榜(冲榜)
Demons_chong = 1004, --心魔排行榜(冲榜)
ShanHe_chong = 10030, --山河排行榜(冲榜)
GodsWayTower = 45, --多队塔

View File

@ -355,16 +355,16 @@ function this.UpdateRankInfo(go, data)
elseif rankType == RANK_TYPE.UpStar or rankType == RANK_TYPE.UpStar2 then
infoTxt.gameObject:SetActive(true)
infoTxt.text = Language[11932] .. data.rankInfo.param1
elseif rankType == RANK_TYPE.DaijinquanRank then
elseif rankType == RANK_TYPE.DaijinquanRank or rankType == RANK_TYPE.DaijinquanRank_chong then
infoTxt.gameObject:SetActive(true)
infoTxt.text = GetLanguageStrById("代金券")..":" .. data.rankInfo.param1
elseif rankType == RANK_TYPE.YingxiongRank then
infoTxt.text = GetLanguageStrById("代金券") .. ":" .. data.rankInfo.param1
elseif rankType == RANK_TYPE.YingxiongRank or rankType == RANK_TYPE.YingxiongRank_chong then
infoTxt.gameObject:SetActive(true)
infoTxt.text = GetLanguageStrById("次数:") .. data.rankInfo.param1
elseif rankType == RANK_TYPE.FabaoRank then
elseif rankType == RANK_TYPE.FabaoRank or rankType == RANK_TYPE.FabaoRank_chong then
infoTxt.gameObject:SetActive(true)
infoTxt.text = GetLanguageStrById("次数:") .. data.rankInfo.param1
elseif rankType == RANK_TYPE.XunxianRank then
elseif rankType == RANK_TYPE.XunxianRank or rankType == RANK_TYPE.XunxianRank_chong then
infoTxt.gameObject:SetActive(true)
infoTxt.text = GetLanguageStrById("次数:") .. data.rankInfo.param1
end

View File

@ -6,7 +6,7 @@ local funIndex = 1
local TabBox = require("Modules/Common/TabBox")
local _TabData = {
[1] = { default = "r_hero_xuanze_002", select = "r_hero_xuanze_001", name = Language[12822], rpType = RedPointType.Setting_Head },
-- [2] = { default = "r_hero_xuanze_002", select = "r_hero_xuanze_001", name = "坐骑" , rpType = RedPointType.Setting_Ride},
--[2] = { default = "r_hero_xuanze_002", select = "r_hero_xuanze_001", name = "坐骑" , rpType = RedPointType.Setting_Ride},
[2] = { default = "r_hero_xuanze_002", select = "r_hero_xuanze_001", name = Language[12823], rpType = RedPointType.Setting_Title },
-- [4] = { default = "r_hero_xuanze_002", select = "r_hero_xuanze_001", name = "时装",rpType = RedPointType.Setting_Skin },
}
@ -21,7 +21,7 @@ this.contents = {
--称号
-- [2] = {view = require("Modules/Setting/SettingPlayerTitle"), panelName = "settingPlayerTitle"},
-- 时装
-- [2] = {view = require("Modules/Setting/SettingPlayerRide"), panelName = "settingPlayerRide"},
--[2] = {view = require("Modules/Setting/SettingPlayerRide"), panelName = "settingPlayerRide"},
-- 称号
[2] = { view = require("Modules/Setting/SettingPlayerTitle"), panelName = "settingPlayerTitle" },
--[4] = {view = require("Modules/Setting/SettingPlayerSkin"), panelName = "settingPlayerSkin"},