12345678910111213 |
- ---@class KLTradeCommonGoodsPanelView:UIKmlLuaViewBase
- ---@field datalist_goods UIKmlLuaControl
- local KLTradeCommonGoodsPanelView = {}
- setmetatable(KLTradeCommonGoodsPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Trade/Panel/KLTradeCommonGoods/KLTradeCommonGoodsPanelKml'
- KLTradeCommonGoodsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLTradeCommonGoodsPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLTradeCommonGoodsPanelView.content)
- end
- return KLTradeCommonGoodsPanelView
|