胶料快检添加离线模式

This commit is contained in:
2026-06-30 11:28:04 +08:00
parent efcd73a565
commit 840e68a450
19 changed files with 1053 additions and 343 deletions

View File

@@ -0,0 +1,18 @@
namespace YY.Admin.Event
{
/// <summary>
/// 按 ViewName 关闭 Tab 并可激活指定列表页
/// </summary>
public class TabCloseRequestPayload
{
public string ViewNameToClose { get; set; } = string.Empty;
public string? ActivateViewName { get; set; }
public string? ActivateTabName { get; set; }
}
public class TabCloseRequestEvent : PubSubEvent<TabCloseRequestPayload>
{
}
}