KLTradeCommonGoodsPanelView.lua 574 B

12345678910111213
  1. ---@class KLTradeCommonGoodsPanelView:UIKmlLuaViewBase
  2. ---@field datalist_goods UIKmlLuaControl
  3. local KLTradeCommonGoodsPanelView = {}
  4. setmetatable(KLTradeCommonGoodsPanelView,UIKmlLuaViewBase)
  5. local kmlPath = 'dev/outui/Trade/Panel/KLTradeCommonGoods/KLTradeCommonGoodsPanelKml'
  6. KLTradeCommonGoodsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  7. ---@param parent UIKmlLuaControl
  8. function KLTradeCommonGoodsPanelView:Init(parent)
  9. self:InitRoot(parent,kmlPath,KLTradeCommonGoodsPanelView.content)
  10. end
  11. return KLTradeCommonGoodsPanelView