This commit is contained in:
puxuan 2025-10-13 14:20:05 +08:00
parent 182a613663
commit b84d255edd
2 changed files with 3 additions and 3 deletions

View File

@ -4,8 +4,8 @@ function EquipManager:showEquipListUI(heroEntity, part)
UIManager:showUI("app/ui/equip/equip_list_ui", {heroEntity = heroEntity, part = part})
end
function EquipManager:showEquipGrowthUI(slotId)
UIManager:showUI("app/ui/equip/equip_growth_ui", {slotId = slotId})
function EquipManager:showEquipGrowthUI(slotId, part)
UIManager:showUI("app/ui/equip/equip_growth_ui", {slotId = slotId, part = part})
end
function EquipManager:showEquipInfoUI(params)

View File

@ -16,7 +16,7 @@ end
function EquipGrowthUI:ctor(parmas)
self.slotId = parmas.slotId
self.equipPart = 1
self.equipPart = parmas.part or 1
self.page = 1
end