KLTradeGoodsItemView.lua 956 B

123456789101112131415161718192021222324
  1. ---@class KLTradeGoodsItemView: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. ---@field icon_career UIKmlLuaControl
  14. local KLTradeGoodsItemView = {}
  15. setmetatable(KLTradeGoodsItemView,UIKmlLuaViewBase)
  16. local kmlPath = 'dev/outui/Trade/Item/KLTradeGoods/KLTradeGoodsItemKml'
  17. KLTradeGoodsItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  18. ---@param parent UIKmlLuaControl
  19. function KLTradeGoodsItemView:Init(parent)
  20. self:InitRoot(parent,kmlPath,KLTradeGoodsItemView.content)
  21. end
  22. return KLTradeGoodsItemView