2025-12-18 20:23:31 +08:00
|
|
|
local ManagerChild_GamePlayView = import(".ManagerChild_GamePlayView")
|
|
|
|
|
local ManagerChild_PlayerView = import(".ManagerChild_PlayerView")
|
2026-01-04 21:54:26 +08:00
|
|
|
--成员
|
|
|
|
|
local ManagerMenberChild_PlayerView = import(".ManagerMenberChild_PlayerView")
|
2025-12-18 20:23:31 +08:00
|
|
|
|
|
|
|
|
local FamilyManagerTable = {}
|
|
|
|
|
|
|
|
|
|
local M = FamilyManagerTable
|
|
|
|
|
|
|
|
|
|
M.ManagerTable = {
|
2026-01-04 21:54:26 +08:00
|
|
|
{ id = 1, title = "成员管理", view = ManagerChild_PlayerView },
|
|
|
|
|
{ id = 2, title = "快速组局", view = ManagerChild_GamePlayView },
|
|
|
|
|
--成员管理页面
|
|
|
|
|
{ id = 3, title = "成员列表", view = ManagerMenberChild_PlayerView }
|
2025-12-18 20:23:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
M.ManagerShow = {
|
2026-01-04 21:54:26 +08:00
|
|
|
{ 1, 2 }, --群主
|
|
|
|
|
{}, --代理
|
|
|
|
|
{} --用户
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
M.ManagerMenberShow = {
|
|
|
|
|
{ 3 }, --群主
|
2025-12-18 20:23:31 +08:00
|
|
|
{}, --代理
|
|
|
|
|
{} --用户
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-04 21:54:26 +08:00
|
|
|
M.ManagerManger = {
|
|
|
|
|
{id=1,url="ui://Family/FamilyManager",table = M.ManagerShow},
|
|
|
|
|
{id=2,url="ui://Family/FamilyManagerMenber",table = M.ManagerMenberShow},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return M
|