12345678910111213141516 |
- ---@class KLFundRewardItemItemView:UIKmlLuaViewBase
- ---@field osa_reward_list UIKmlLuaControl
- ---@field btn_get UIKmlLuaControl
- ---@field img_got UIKmlLuaControl
- ---@field text_wait UIKmlLuaControl
- ---@field text_day UIKmlLuaControl
- local KLFundRewardItemItemView = {}
- setmetatable(KLFundRewardItemItemView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/MainRecharge/Item/KLFundRewardItem/KLFundRewardItemItemKml'
- KLFundRewardItemItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- function KLFundRewardItemItemView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLFundRewardItemItemView.content)
- end
- return KLFundRewardItemItemView
|