KLRechargeLinkPanelView.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---@class KLRechargeLinkPanelView:UIKmlLuaViewBase
  2. ---@field panel UIKmlLuaControl
  3. ---@field mask UIKmlLuaControl
  4. ---@field bg UIKmlLuaControl
  5. ---@field bg2 UIKmlLuaControl
  6. ---@field text1 UIKmlLuaControl
  7. ---@field btnUp UIKmlLuaControl
  8. ---@field img_schedule UIKmlLuaControl
  9. ---@field scheduleImg UIKmlLuaControl
  10. ---@field schedule_Text UIKmlLuaControl
  11. ---@field RechargeTargetTextBName UIKmlLuaControl
  12. ---@field img10 UIKmlLuaControl
  13. ---@field DIY_giftScrollView UIKmlLuaControl
  14. ---@field gridview8 UIKmlLuaControl
  15. ---@field ItemDataList UIKmlLuaControl
  16. ---@field OpenServiceGiftItem UIKmlLuaControl
  17. ---@field Bg UIKmlLuaControl
  18. ---@field bg_BtnMask UIKmlLuaControl
  19. ---@field Get UIKmlLuaControl
  20. ---@field ItemTex UIKmlLuaControl
  21. ---@field BigTitle UIKmlLuaControl
  22. ---@field ItemModel UIKmlLuaControl
  23. ---@field BigGetBtn UIKmlLuaControl
  24. ---@field BigRedDot UIKmlLuaControl
  25. ---@field button_watchVideo UIKmlLuaControl
  26. ---@field text19 UIKmlLuaControl
  27. ---@field Timer UIKmlLuaControl
  28. local KLRechargeLinkPanelView = {}
  29. setmetatable(KLRechargeLinkPanelView,UIKmlLuaViewBase)
  30. local kmlPath = 'dev/outui/Recharge/Panel/KLRechargeLink/KLRechargeLinkPanelKml'
  31. KLRechargeLinkPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  32. ---@param parent UIKmlLuaControl
  33. function KLRechargeLinkPanelView:Init(parent)
  34. self:InitRoot(parent,kmlPath,KLRechargeLinkPanelView.content)
  35. end
  36. return KLRechargeLinkPanelView