【仙缘汇聚箱】报错修改

dev_chengFeng
ZhangBiao 2022-01-14 18:47:41 +08:00
parent 3e47cae110
commit 5d2fdc5773
1 changed files with 5 additions and 1 deletions

View File

@ -173,7 +173,11 @@ end
function GeneralPopup:OnShow()
if index == GENERAL_POPUP_TYPE.RecruitBox then--临时接的参数 需要onshow刷新的调用
contentScripts[index].view:OnShow(this,unpack(onOpenArgs, 1, table.maxn(onOpenArgs)))
if onOpenArgs then
contentScripts[index].view:OnShow(this,unpack(onOpenArgs, 1, table.maxn(onOpenArgs)))
else
contentScripts[index].view:OnShow(this)
end
end
this.backBtn:SetActive(index ~= GENERAL_POPUP_TYPE.SheJiCheckGuild)
end