1234567891011121314151617181920 |
- ---@class KLShopMallGoodsItemView:UIKmlLuaViewBase
- ---@field txt_goods_title UIKmlLuaControl
- ---@field Text_Condition UIKmlLuaControl
- ---@field img_goods_icon UIKmlLuaControl
- ---@field txt_purchase_limitation UIKmlLuaControl
- ---@field Bg UIKmlLuaControl
- ---@field img_money_icon UIKmlLuaControl
- ---@field txt_price UIKmlLuaControl
- ---@field ButtonBg UIKmlLuaControl
- local KLShopMallGoodsItemView = {}
- setmetatable(KLShopMallGoodsItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/ShopMall/Item/KLShopMallGoods/KLShopMallGoodsItemKml'
- KLShopMallGoodsItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLShopMallGoodsItemView:Init(parent)
- self:InitRoot(parent,kmlPath,KLShopMallGoodsItemView.content)
- end
- return KLShopMallGoodsItemView
|