sk-client/Assets/ManagedResources/~Lua/Modules/Popup/View/GeneralPopup_Currency.lua

59 lines
1.1 KiB
Lua

----- 通用 -----
local this = {}
--传入父脚本模块
local parent
--传入特效层级
local sortingOrder = 0
local func
function this:InitComponent(gameObject)
this.cancel = Util.GetGameObject(gameObject, "CancelBtn")
this.confirm = Util.GetGameObject(gameObject, "ConfirmBtn")
this.title = Util.GetGameObject(gameObject,"TitleText"):GetComponent("Text")
this.txt = Util.GetGameObject(gameObject,"Root/font"):GetComponent("Text")
end
function this:BindEvent()
Util.AddClick(this.cancel, this.OnLeftBtnClick)
Util.AddClick(this.confirm, this.OnRightBtnClick)
end
--左边按钮点击事件
function this.OnLeftBtnClick()
parent:ClosePanel()
end
--右边按钮点击事件
function this.OnRightBtnClick()
parent:ClosePanel()
if func then
func()
end
end
function this.Hide()
parent:ClosePanel()
end
function this:AddListener()
end
function this:RemoveListener()
end
function this:OnShow(_parent, ...)
parent = _parent
local args = {...}
this.txt.text = args[1]
func = args[2]
this.title.text = args[3]
end
function this:OnClose()
end
function this:OnDestroy()
end
return this