1234567891011121314151617181920212223 |
- ---@class KLTradeUnionGoodsItemView:UIKmlLuaViewBase
- ---@field item_award UIKmlLuaControl
- ---@field text_name UIKmlLuaControl
- ---@field text_time UIKmlLuaControl
- ---@field img_money_icon_cur UIKmlLuaControl
- ---@field text_cur_price UIKmlLuaControl
- ---@field btn_bidding_price UIKmlLuaControl
- ---@field img_money_icon_buy UIKmlLuaControl
- ---@field text_buy_price UIKmlLuaControl
- ---@field btn_buy UIKmlLuaControl
- ---@field btn_item_tips UIKmlLuaControl
- ---@field text_state UIKmlLuaControl
- local KLTradeUnionGoodsItemView = {}
- setmetatable(KLTradeUnionGoodsItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Trade/Item/KLTradeUnionGoods/KLTradeUnionGoodsItemKml'
- KLTradeUnionGoodsItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLTradeUnionGoodsItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLTradeUnionGoodsItemView.content)
- end
- return KLTradeUnionGoodsItemView
|