Files
JJBB/Assets/Project/Script/LuaScripts/NetWork/Lua/Handle/LuaHandleFlashCloudBuyInfoRsp.txt
2024-08-23 15:49:34 +08:00

17 lines
526 B
Plaintext

LuaHandleFlashCloudBuyInfoRsp = {}
function LuaHandleFlashCloudBuyInfoRsp.HandlePacket(mem)
require "LuaDistributesFlashCloudBuyInfoRsp"
local packet = LuaDistributesFlashCloudBuyInfoRsp.ExtraPacket(mem)
--print(packet)
local consumeActPanel = CS.LuaUIManager.Instance:GetUIInstance("MarketingCloudShoppingPage")
print(consumeActPanel == nil)
if consumeActPanel ~= nil then
consumeActPanel:GetComponent("MarketingUIBaseLua"):CallScriptFuncAtPath("MarketingCloudShoppingPage.MarketingActRetDel", packet)
end
end