123456789101112131415161718192021222324252627282930313233 |
- ---@class KLRedFortSettlementPanel:UIKmlLuaPanelBase
- ---@field view KLRedFortSettlementPanelView
- local KLRedFortSettlementPanel = class(UIKmlLuaPanelBase)
- local this =KLRedFortSettlementPanel
- ---创建时调用一次
- function this:Init()
-
- end
- ---注册UI事件和服务器消息
- function this:RegistEvents()
- GUI:AddOnClickEvent(self.view.btnOK, self, self.BtnCloseOnClick)
- end
- function this:BtnCloseOnClick()
- GUI:UIPanel_Close("dev/outui/Activity/Panel/KLRedFortSettlement/KLRedFortSettlementPanel")
- end
- ---创建或者刷新界面数据时调用
- function this:Refresh()
- SL:HideMainPanel()
- if self.args then
- GUI:Text_setString(self.view.textKillScore,tostring(self.args["1"]))
- GUI:Text_setString(self.view.textRank,tostring(self.args["2"]))
- end
- end
- function this:Close()
- SL:ShowMainPanel()
- end
- return this
|