fix bug
This commit is contained in:
parent
182a613663
commit
b84d255edd
@ -4,8 +4,8 @@ function EquipManager:showEquipListUI(heroEntity, part)
|
|||||||
UIManager:showUI("app/ui/equip/equip_list_ui", {heroEntity = heroEntity, part = part})
|
UIManager:showUI("app/ui/equip/equip_list_ui", {heroEntity = heroEntity, part = part})
|
||||||
end
|
end
|
||||||
|
|
||||||
function EquipManager:showEquipGrowthUI(slotId)
|
function EquipManager:showEquipGrowthUI(slotId, part)
|
||||||
UIManager:showUI("app/ui/equip/equip_growth_ui", {slotId = slotId})
|
UIManager:showUI("app/ui/equip/equip_growth_ui", {slotId = slotId, part = part})
|
||||||
end
|
end
|
||||||
|
|
||||||
function EquipManager:showEquipInfoUI(params)
|
function EquipManager:showEquipInfoUI(params)
|
||||||
|
|||||||
@ -16,7 +16,7 @@ end
|
|||||||
|
|
||||||
function EquipGrowthUI:ctor(parmas)
|
function EquipGrowthUI:ctor(parmas)
|
||||||
self.slotId = parmas.slotId
|
self.slotId = parmas.slotId
|
||||||
self.equipPart = 1
|
self.equipPart = parmas.part or 1
|
||||||
self.page = 1
|
self.page = 1
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user