KLUnionApplyListPanelView.lua 890 B

12345678910111213141516171819202122
  1. ---@class KLUnionApplyListPanelView:UIKmlLuaViewBase
  2. ---@field AutoPass UIKmlLuaControl
  3. ---@field InputField_level UIKmlLuaControl
  4. ---@field table_list UIKmlLuaControl
  5. ---@field table_list UIKmlLuaControl
  6. ---@field union_list_view UIKmlLuaControl
  7. ---@field union_data_list UIKmlLuaControl
  8. ---@field btn_close UIKmlLuaControl
  9. ---@field btn_allRefuse UIKmlLuaControl
  10. ---@field btn_allAgree UIKmlLuaControl
  11. ---@field mask UIKmlLuaControl
  12. local KLUnionApplyListPanelView = {}
  13. setmetatable(KLUnionApplyListPanelView,UIKmlLuaViewBase)
  14. local kmlPath = 'dev/ui/Union/Panel/KLUnionApplyList/KLUnionApplyListPanelKml'
  15. KLUnionApplyListPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  16. ---@param parent UIKmlLuaControl
  17. function KLUnionApplyListPanelView:Init(parent)
  18. self:InitRoot(parent,kmlPath,KLUnionApplyListPanelView.content)
  19. end
  20. return KLUnionApplyListPanelView