KLActivityDetailPanelView.lua 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. ---@class KLActivityDetailPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field bg1 UIKmlLuaControl
  4. ---@field bgClose UIKmlLuaControl
  5. ---@field devilTitle UIKmlLuaControl
  6. ---@field bloodTitle UIKmlLuaControl
  7. ---@field closeBtn UIKmlLuaControl
  8. ---@field togglegroup UIKmlLuaControl
  9. ---@field devilTitleicon UIKmlLuaControl
  10. ---@field bloodTitleicon UIKmlLuaControl
  11. ---@field levelContent UIKmlLuaControl
  12. ---@field layout4 UIKmlLuaControl
  13. ---@field img45 UIKmlLuaControl
  14. ---@field text46 UIKmlLuaControl
  15. ---@field level UIKmlLuaControl
  16. ---@field img54 UIKmlLuaControl
  17. ---@field text55 UIKmlLuaControl
  18. ---@field defense UIKmlLuaControl
  19. ---@field img57 UIKmlLuaControl
  20. ---@field text58 UIKmlLuaControl
  21. ---@field openTime UIKmlLuaControl
  22. ---@field img60 UIKmlLuaControl
  23. ---@field text61 UIKmlLuaControl
  24. ---@field nextOpenTime UIKmlLuaControl
  25. ---@field openTxt UIKmlLuaControl
  26. ---@field img63 UIKmlLuaControl
  27. ---@field text64 UIKmlLuaControl
  28. ---@field rewardList UIKmlLuaControl
  29. ---@field layout67 UIKmlLuaControl
  30. ---@field img7 UIKmlLuaControl
  31. ---@field text8 UIKmlLuaControl
  32. ---@field ticketBtn UIKmlLuaControl
  33. ---@field ticketCount UIKmlLuaControl
  34. ---@field addCountBtn UIKmlLuaControl
  35. ---@field enterBtn UIKmlLuaControl
  36. ---@field desBtn UIKmlLuaControl
  37. ---@field leftcount UIKmlLuaControl
  38. ---@field ticketModel UIKmlLuaControl
  39. ---@field ticketBtn UIKmlLuaControl
  40. ---@field levelList UIKmlLuaControl
  41. ---@field ticketModel UIKmlLuaControl
  42. ---@field levelLayout UIKmlLuaControl
  43. local KLActivityDetailPanelView = {}
  44. setmetatable(KLActivityDetailPanelView,UIKmlLuaViewBase)
  45. local kmlPath = 'dev/outui/Activity/Panel/KLActivityDetail/KLActivityDetailPanelKml'
  46. KLActivityDetailPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  47. ---@param parent UIKmlLuaControl
  48. function KLActivityDetailPanelView:Init(parent)
  49. self:InitRoot(parent,kmlPath,KLActivityDetailPanelView.content)
  50. end
  51. return KLActivityDetailPanelView