ro-table/Asstes/Resources/Script/FrameWork/GUI/cell/Adventure/AdventureFoodRecipeCell.txt
2025-06-04 05:02:57 +08:00

20 lines
476 B
Plaintext

local baseCell = autoImport("BaseCell")
AdventureFoodRecipeCell = class("AdventureFoodRecipeCell",baseCell)
function AdventureFoodRecipeCell:Init()
self:initView()
end
function AdventureFoodRecipeCell:initView( )
-- body
self.text = self:FindComponent("text",UILabel)
end
function AdventureFoodRecipeCell:SetData( data )
-- body
local starLv = data.lv
local num = data.count
self.text.text = string.format(ZhString.AdventureFoodPage_RecipeCellText,starLv,num)
end