1234567891011121314151617181920212223 |
- ---@class KLShowStallGoodsItemView:UIKmlLuaViewBase
- ---@field btn_goods_item UIKmlLuaControl
- ---@field scroll_text_template UIKmlLuaControl
- ---@field KmlScrollTextTemplate UIKmlLuaControl
- ---@field txt_item_name UIKmlLuaControl
- ---@field item UIKmlLuaControl
- ---@field txt_count_down UIKmlLuaControl
- ---@field img_coin_type UIKmlLuaControl
- ---@field monthCardText UIKmlLuaControl
- ---@field txt_price UIKmlLuaControl
- ---@field img_favor_count UIKmlLuaControl
- ---@field txt_favor_count UIKmlLuaControl
- local KLShowStallGoodsItemView = {}
- setmetatable(KLShowStallGoodsItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Stall/Item/KLShowStallGoodsItem/KLShowStallGoodsItemKml'
- KLShowStallGoodsItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLShowStallGoodsItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLShowStallGoodsItemView.content)
- end
- return KLShowStallGoodsItemView
|