【主角修为】图标顺序调整

dev_chengFeng
ZhangBiao 2021-10-22 09:26:09 +08:00
parent 9e0ca64dbd
commit 2ab4be658d
2 changed files with 10 additions and 8 deletions

View File

@ -1379,12 +1379,14 @@ end
--新百宝商会红点检测 --新百宝商会红点检测
function this.TreasureStoreSeason2RedCheck() function this.TreasureStoreSeason2RedCheck()
local data = CommonActPageManager.GetData(ActivityTypeDef.TreasureStoreSeason2) if ActivityGiftManager.IsActivityTypeOpen(ActivityTypeDef.TreasureStoreSeason2) then
for i = 1, #data.FreelyData do local data = CommonActPageManager.GetData(ActivityTypeDef.TreasureStoreSeason2)
for j = 1, #data.FreelyData[i] do for i = 1, #data.FreelyData do
local data = data.FreelyData[i][j] for j = 1, #data.FreelyData[i] do
if data.progress == 1 and data.Price == 0 then local data = data.FreelyData[i][j]
return true if data.progress == 1 and data.Price == 0 then
return true
end
end end
end end
end end

View File

@ -1,8 +1,8 @@
require("Base/BasePanel") require("Base/BasePanel")
local Cultivation = Inherit(BasePanel) local Cultivation = Inherit(BasePanel)
local IMAGE = { local IMAGE = {
[1] = "r_hero_jinengdian02", [1] = "r_hero_jinengdian04",
[2] = "r_hero_jinengdian04", [2] = "r_hero_jinengdian02",
[3] = "r_hero_jinengdian03", [3] = "r_hero_jinengdian03",
[4] = "r_hero_jinengdian01", [4] = "r_hero_jinengdian01",
} }