1234567891011121314151617181920212223242526272829303132333435363738 |
- ---@class KLRechargeLinkPanelView:UIKmlLuaViewBase
- ---@field panel UIKmlLuaControl
- ---@field mask UIKmlLuaControl
- ---@field bg UIKmlLuaControl
- ---@field bg2 UIKmlLuaControl
- ---@field text1 UIKmlLuaControl
- ---@field btnUp UIKmlLuaControl
- ---@field img_schedule UIKmlLuaControl
- ---@field scheduleImg UIKmlLuaControl
- ---@field schedule_Text UIKmlLuaControl
- ---@field RechargeTargetTextBName UIKmlLuaControl
- ---@field img10 UIKmlLuaControl
- ---@field DIY_giftScrollView UIKmlLuaControl
- ---@field gridview8 UIKmlLuaControl
- ---@field ItemDataList UIKmlLuaControl
- ---@field OpenServiceGiftItem UIKmlLuaControl
- ---@field Bg UIKmlLuaControl
- ---@field bg_BtnMask UIKmlLuaControl
- ---@field Get UIKmlLuaControl
- ---@field ItemTex UIKmlLuaControl
- ---@field BigTitle UIKmlLuaControl
- ---@field ItemModel UIKmlLuaControl
- ---@field BigGetBtn UIKmlLuaControl
- ---@field BigRedDot UIKmlLuaControl
- ---@field button_watchVideo UIKmlLuaControl
- ---@field text19 UIKmlLuaControl
- ---@field Timer UIKmlLuaControl
- local KLRechargeLinkPanelView = {}
- setmetatable(KLRechargeLinkPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Recharge/Panel/KLRechargeLink/KLRechargeLinkPanelKml'
- KLRechargeLinkPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLRechargeLinkPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLRechargeLinkPanelView.content)
- end
- return KLRechargeLinkPanelView
|