KLFundRewardItemItemView.lua 661 B

12345678910111213141516
  1. ---@class KLFundRewardItemItemView:UIKmlLuaViewBase
  2. ---@field osa_reward_list UIKmlLuaControl
  3. ---@field btn_get UIKmlLuaControl
  4. ---@field img_got UIKmlLuaControl
  5. ---@field text_wait UIKmlLuaControl
  6. ---@field text_day UIKmlLuaControl
  7. local KLFundRewardItemItemView = {}
  8. setmetatable(KLFundRewardItemItemView,UIKmlLuaViewBase)
  9. local kmlPath = 'dev/outui/MainRecharge/Item/KLFundRewardItem/KLFundRewardItemItemKml'
  10. KLFundRewardItemItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  11. function KLFundRewardItemItemView:Init(parent)
  12. self:InitRoot(parent,kmlPath,KLFundRewardItemItemView.content)
  13. end
  14. return KLFundRewardItemItemView