123456789101112131415161718192021222324252627282930 |
- ---@class KLDailyDiamondRechargePanelView:UIKmlLuaViewBase
- ---@field panel1 UIKmlLuaControl
- ---@field DailyPackMainBG UIKmlLuaControl
- ---@field DailyPackTitleImg UIKmlLuaControl
- ---@field DailyPackInfo UIKmlLuaControl
- ---@field DailyPackInfoScrollView UIKmlLuaControl
- ---@field gridview2 UIKmlLuaControl
- ---@field DailyPackItemList UIKmlLuaControl
- ---@field buyAllGift_btn UIKmlLuaControl
- ---@field originalPrice UIKmlLuaControl
- ---@field originalPriceNum UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- ---@field allBuyText UIKmlLuaControl
- ---@field selectItemPanel UIKmlLuaControl
- ---@field selectItemCloseBtn UIKmlLuaControl
- ---@field selectItemTitle UIKmlLuaControl
- ---@field selectItemOkBtn UIKmlLuaControl
- ---@field selectItemInfoGridView UIKmlLuaControl
- ---@field selectItemInfoDataList UIKmlLuaControl
- local KLDailyDiamondRechargePanelView = {}
- setmetatable(KLDailyDiamondRechargePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/MainRecharge/Panel/KLDailyDiamondRecharge/KLDailyDiamondRechargePanelKml'
- KLDailyDiamondRechargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLDailyDiamondRechargePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLDailyDiamondRechargePanelView.content)
- end
- return KLDailyDiamondRechargePanelView
|