12345678910111213141516171819202122 |
- ---@class KLInvestmentFundPanelView:UIKmlLuaViewBase
- ---@field osa_reward_list UIKmlLuaControl
- ---@field btn_buy UIKmlLuaControl
- ---@field img_bg UIKmlLuaControl
- ---@field img_get UIKmlLuaControl
- ---@field item_reward UIKmlLuaControl
- ---@field item_reward_top UIKmlLuaControl
- ---@field text_gain_num UIKmlLuaControl
- ---@field text_gain_num_top UIKmlLuaControl
- ---@field text_return_num UIKmlLuaControl
- ---@field text_equip_name UIKmlLuaControl
- local KLInvestmentFundPanelView = {}
- setmetatable(KLInvestmentFundPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/MainRecharge/Panel/KLInvestmentFund/KLInvestmentFundPanelKml'
- KLInvestmentFundPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLInvestmentFundPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLInvestmentFundPanelView.content)
- end
- return KLInvestmentFundPanelView
|