KLTradeUnionGoodsItemView.lua 951 B

1234567891011121314151617181920212223
  1. ---@class KLTradeUnionGoodsItemView:UIKmlLuaViewBase
  2. ---@field item_award UIKmlLuaControl
  3. ---@field text_name UIKmlLuaControl
  4. ---@field text_time UIKmlLuaControl
  5. ---@field img_money_icon_cur UIKmlLuaControl
  6. ---@field text_cur_price UIKmlLuaControl
  7. ---@field btn_bidding_price UIKmlLuaControl
  8. ---@field img_money_icon_buy UIKmlLuaControl
  9. ---@field text_buy_price UIKmlLuaControl
  10. ---@field btn_buy UIKmlLuaControl
  11. ---@field btn_item_tips UIKmlLuaControl
  12. ---@field text_state UIKmlLuaControl
  13. local KLTradeUnionGoodsItemView = {}
  14. setmetatable(KLTradeUnionGoodsItemView,UIKmlLuaViewBase)
  15. local kmlPath = 'dev/outui/Trade/Item/KLTradeUnionGoods/KLTradeUnionGoodsItemKml'
  16. KLTradeUnionGoodsItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  17. ---@param parent UIKmlLuaControl
  18. function KLTradeUnionGoodsItemView:Init(parent)
  19. self:InitRoot(parent,kmlPath,KLTradeUnionGoodsItemView.content)
  20. end
  21. return KLTradeUnionGoodsItemView