zhangjiannan 2025-05-22 15:16:42 +08:00
parent 13d2027a98
commit 7dac353d15
3 changed files with 11 additions and 1 deletions

View File

@ -140,7 +140,7 @@ function TimeLimitedCall:OnShow(_sortingOrder,_parent)
end)
idx = idx + 1
end
RewardPreview.new(self.reward, sortingOrder)
self:RefreshGetHeroTimes()
self:TimeCountDown()
self:RefreshNextLevelReward()

View File

@ -278,6 +278,9 @@ function this.SetDailyMissionBox(_missionDatas)
Util.AddOnceClick(boxList[i], function()
this.MissionBoxClick(boxList[i],v)
end)
if i == #_missionDatas then
this.MissionBoxClick(boxList[i],v)
end
end
end
function this.MissionBoxClick(btn,_singleData)

View File

@ -276,6 +276,13 @@ function this.ShowTitleProgressRewardData()
end)
end)
end)
if i == #rewardBtn then
if curProgressData.state == 0 then
--PopupTipPanel.ShowTip("完成任务数量不足")
UIManager.OpenPanel(UIName.BoxRewardShowPopup,allRewardTaskList[i].Reward,nil,nil,allRewardTaskList[i].TaskValue[2][1] .. GetLanguageStrById(11923))
return
end
end
end
end
end