Files
JJBB/Assets/Project/Script/LuaScripts/UI/XianGou/FlashSalePanel.cs
2024-08-23 15:49:34 +08:00

27 lines
598 B
C#

using GCGame.Table;
using Module.Log;
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class FlashSalePanel : MarketingPacketPageRoot
{
public void OnBtnClose()
{
var tabAct = TableManager.GetActInfoClientByID(_ActID, 0);
LuaUIManager.Instance.CloseUI(tabAct.UIPath);
MarketingActsRoot.Instance().ReqActList();
}
protected override void MarketingActPageAwardRetDelInner(object tags)
{
base.MarketingActPageAwardRetDelInner(tags);
InitSubTagPage(0);
}
}