KLNewVIPMainPanelView.lua 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. ---@class KLNewVIPMainPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field bg_vip UIKmlLuaControl
  4. ---@field img1 UIKmlLuaControl
  5. ---@field img3 UIKmlLuaControl
  6. ---@field vipLevelTp UIKmlLuaControl
  7. ---@field btn_close UIKmlLuaControl
  8. ---@field textDec UIKmlLuaControl
  9. ---@field DIY_Text UIKmlLuaControl
  10. ---@field SpLine UIKmlLuaControl
  11. ---@field icon_vip UIKmlLuaControl
  12. ---@field img6 UIKmlLuaControl
  13. ---@field vip_level UIKmlLuaControl
  14. ---@field img_ranklistbgR UIKmlLuaControl
  15. ---@field VipLevelReward1 UIKmlLuaControl
  16. ---@field img_free UIKmlLuaControl
  17. ---@field VipLevel2 UIKmlLuaControl
  18. ---@field RewardScrollViewUp UIKmlLuaControl
  19. ---@field layout10 UIKmlLuaControl
  20. ---@field UpRewardDataList UIKmlLuaControl
  21. ---@field VipLevelReward2 UIKmlLuaControl
  22. ---@field img_pay UIKmlLuaControl
  23. ---@field VipLevel3 UIKmlLuaControl
  24. ---@field RewardScrollViewDown UIKmlLuaControl
  25. ---@field layout14 UIKmlLuaControl
  26. ---@field DownRewardDataList UIKmlLuaControl
  27. ---@field UpBtnGroup UIKmlLuaControl
  28. ---@field button17 UIKmlLuaControl
  29. ---@field btn_GetFree UIKmlLuaControl
  30. ---@field freeRedPoint UIKmlLuaControl
  31. ---@field DownBtnGroup UIKmlLuaControl
  32. ---@field button18 UIKmlLuaControl
  33. ---@field btn_GetPay UIKmlLuaControl
  34. ---@field GetPayText UIKmlLuaControl
  35. ---@field PayIcon UIKmlLuaControl
  36. ---@field btn_up UIKmlLuaControl
  37. ---@field priceRoot UIKmlLuaControl
  38. ---@field img2 UIKmlLuaControl
  39. ---@field txt_VipPrice UIKmlLuaControl
  40. ---@field txt_limitBuyCondition UIKmlLuaControl
  41. ---@field img_ranklistbgL UIKmlLuaControl
  42. ---@field VipLevelImg UIKmlLuaControl
  43. ---@field img_txt_vip UIKmlLuaControl
  44. ---@field img_txt_tequan UIKmlLuaControl
  45. ---@field vipLevel1 UIKmlLuaControl
  46. ---@field VipBuffScrollView UIKmlLuaControl
  47. ---@field layout2 UIKmlLuaControl
  48. ---@field buffDataList UIKmlLuaControl
  49. ---@field LeftPageBtn UIKmlLuaControl
  50. ---@field LeftDot UIKmlLuaControl
  51. ---@field RightPageBtn UIKmlLuaControl
  52. ---@field RightDot UIKmlLuaControl
  53. local KLNewVIPMainPanelView = {}
  54. setmetatable(KLNewVIPMainPanelView,UIKmlLuaViewBase)
  55. local kmlPath = 'dev/outui/VIP/Panel/KLNewVIPMain/KLNewVIPMainPanelKml'
  56. KLNewVIPMainPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  57. ---@param parent UIKmlLuaControl
  58. function KLNewVIPMainPanelView:Init(parent)
  59. self:InitRoot(parent,kmlPath,KLNewVIPMainPanelView.content)
  60. end
  61. return KLNewVIPMainPanelView