KLShowStallGoodsItemView.lua 958 B

1234567891011121314151617181920212223
  1. ---@class KLShowStallGoodsItemView:UIKmlLuaViewBase
  2. ---@field btn_goods_item UIKmlLuaControl
  3. ---@field scroll_text_template UIKmlLuaControl
  4. ---@field KmlScrollTextTemplate UIKmlLuaControl
  5. ---@field txt_item_name UIKmlLuaControl
  6. ---@field item UIKmlLuaControl
  7. ---@field txt_count_down UIKmlLuaControl
  8. ---@field img_coin_type UIKmlLuaControl
  9. ---@field monthCardText UIKmlLuaControl
  10. ---@field txt_price UIKmlLuaControl
  11. ---@field img_favor_count UIKmlLuaControl
  12. ---@field txt_favor_count UIKmlLuaControl
  13. local KLShowStallGoodsItemView = {}
  14. setmetatable(KLShowStallGoodsItemView,UIKmlLuaViewBase)
  15. local kmlPath = 'dev/outui/Stall/Item/KLShowStallGoodsItem/KLShowStallGoodsItemKml'
  16. KLShowStallGoodsItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  17. ---@param parent UIKmlLuaControl
  18. function KLShowStallGoodsItemView:Init(parent)
  19. self:InitRoot(parent,kmlPath,KLShowStallGoodsItemView.content)
  20. end
  21. return KLShowStallGoodsItemView