123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- ---@class KLNewVIPMainPanelView:UIKmlLuaViewBase
- ---@field bg UIKmlLuaControl
- ---@field bg_vip UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- ---@field img3 UIKmlLuaControl
- ---@field vipLevelTp UIKmlLuaControl
- ---@field btn_close UIKmlLuaControl
- ---@field textDec UIKmlLuaControl
- ---@field DIY_Text UIKmlLuaControl
- ---@field SpLine UIKmlLuaControl
- ---@field icon_vip UIKmlLuaControl
- ---@field img6 UIKmlLuaControl
- ---@field vip_level UIKmlLuaControl
- ---@field img_ranklistbgR UIKmlLuaControl
- ---@field VipLevelReward1 UIKmlLuaControl
- ---@field img_free UIKmlLuaControl
- ---@field VipLevel2 UIKmlLuaControl
- ---@field RewardScrollViewUp UIKmlLuaControl
- ---@field layout10 UIKmlLuaControl
- ---@field UpRewardDataList UIKmlLuaControl
- ---@field VipLevelReward2 UIKmlLuaControl
- ---@field img_pay UIKmlLuaControl
- ---@field VipLevel3 UIKmlLuaControl
- ---@field RewardScrollViewDown UIKmlLuaControl
- ---@field layout14 UIKmlLuaControl
- ---@field DownRewardDataList UIKmlLuaControl
- ---@field UpBtnGroup UIKmlLuaControl
- ---@field button17 UIKmlLuaControl
- ---@field btn_GetFree UIKmlLuaControl
- ---@field freeRedPoint UIKmlLuaControl
- ---@field DownBtnGroup UIKmlLuaControl
- ---@field button18 UIKmlLuaControl
- ---@field btn_GetPay UIKmlLuaControl
- ---@field GetPayText UIKmlLuaControl
- ---@field PayIcon UIKmlLuaControl
- ---@field btn_up UIKmlLuaControl
- ---@field priceRoot UIKmlLuaControl
- ---@field img2 UIKmlLuaControl
- ---@field txt_VipPrice UIKmlLuaControl
- ---@field txt_limitBuyCondition UIKmlLuaControl
- ---@field img_ranklistbgL UIKmlLuaControl
- ---@field VipLevelImg UIKmlLuaControl
- ---@field img_txt_vip UIKmlLuaControl
- ---@field img_txt_tequan UIKmlLuaControl
- ---@field vipLevel1 UIKmlLuaControl
- ---@field VipBuffScrollView UIKmlLuaControl
- ---@field layout2 UIKmlLuaControl
- ---@field buffDataList UIKmlLuaControl
- ---@field LeftPageBtn UIKmlLuaControl
- ---@field LeftDot UIKmlLuaControl
- ---@field RightPageBtn UIKmlLuaControl
- ---@field RightDot UIKmlLuaControl
- local KLNewVIPMainPanelView = {}
- setmetatable(KLNewVIPMainPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/VIP/Panel/KLNewVIPMain/KLNewVIPMainPanelKml'
- KLNewVIPMainPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLNewVIPMainPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLNewVIPMainPanelView.content)
- end
- return KLNewVIPMainPanelView
|