KLPrivilegeBossEndPanel.lua 678 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ---@class KLPrivilegeBossEndPanel:UIKmlLuaPanelBase
  2. ---@field view KLPrivilegeBossEndPanelView
  3. local KLPrivilegeBossEndPanel = class(UIKmlLuaPanelBase)
  4. local this = KLPrivilegeBossEndPanel
  5. ---创建时调用一次
  6. function this:Init()
  7. end
  8. function this:InitData(time)
  9. GUI:SetControl_time(self.view.end_time,time)
  10. end
  11. ---创建或者刷新界面数据时调用
  12. function this:Refresh()
  13. end
  14. function this:SetVisible(isVisible)
  15. GUI:setVisible(self.view.root,isVisible)
  16. end
  17. ---注册UI事件和服务器消息
  18. function this:RegistEvents()
  19. end
  20. function this:Exit()
  21. end
  22. function this:CloseOnclick()
  23. end
  24. function this:Close()
  25. end
  26. return this