KLDailyDiamondRechargePanelView.lua 1.3 KB

123456789101112131415161718192021222324252627282930
  1. ---@class KLDailyDiamondRechargePanelView:UIKmlLuaViewBase
  2. ---@field panel1 UIKmlLuaControl
  3. ---@field DailyPackMainBG UIKmlLuaControl
  4. ---@field DailyPackTitleImg UIKmlLuaControl
  5. ---@field DailyPackInfo UIKmlLuaControl
  6. ---@field DailyPackInfoScrollView UIKmlLuaControl
  7. ---@field gridview2 UIKmlLuaControl
  8. ---@field DailyPackItemList UIKmlLuaControl
  9. ---@field buyAllGift_btn UIKmlLuaControl
  10. ---@field originalPrice UIKmlLuaControl
  11. ---@field originalPriceNum UIKmlLuaControl
  12. ---@field img1 UIKmlLuaControl
  13. ---@field allBuyText UIKmlLuaControl
  14. ---@field selectItemPanel UIKmlLuaControl
  15. ---@field selectItemCloseBtn UIKmlLuaControl
  16. ---@field selectItemTitle UIKmlLuaControl
  17. ---@field selectItemOkBtn UIKmlLuaControl
  18. ---@field selectItemInfoGridView UIKmlLuaControl
  19. ---@field selectItemInfoDataList UIKmlLuaControl
  20. local KLDailyDiamondRechargePanelView = {}
  21. setmetatable(KLDailyDiamondRechargePanelView,UIKmlLuaViewBase)
  22. local kmlPath = 'dev/outui/MainRecharge/Panel/KLDailyDiamondRecharge/KLDailyDiamondRechargePanelKml'
  23. KLDailyDiamondRechargePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  24. ---@param parent UIKmlLuaControl
  25. function KLDailyDiamondRechargePanelView:Init(parent)
  26. self:InitRoot(parent,kmlPath,KLDailyDiamondRechargePanelView.content)
  27. end
  28. return KLDailyDiamondRechargePanelView