KLShopMallHomeTabItem.lua 528 B

123456789101112131415161718192021222324
  1. ---@class KLShopMallHomeTabItem:UIKmlLuaPanelBase
  2. ---@field view KLShopMallHomeTabItemView
  3. local KLShopMallHomeTabItem = class(UIKmlLuaPanelBase)
  4. local this =KLShopMallHomeTabItem
  5. ---创建时调用一次
  6. function this:Init()
  7. ---@type cfg_menu_layer_column
  8. local config = self.args
  9. GUI:Text_setString(self.view.Label,config.name)
  10. end
  11. ---创建或者刷新界面数据时调用
  12. function this:Refresh()
  13. end
  14. ---注册UI事件和服务器消息
  15. function this:RegistEvents()
  16. end
  17. function this:Close()
  18. end
  19. return this