2026-01-07 21:43:41 +08:00
|
|
|
--管理or设置
|
2025-12-18 20:23:31 +08:00
|
|
|
local ManagerChild_GamePlayView = import(".ManagerChild_GamePlayView")
|
|
|
|
|
local ManagerChild_PlayerView = import(".ManagerChild_PlayerView")
|
2026-01-07 21:43:41 +08:00
|
|
|
local ManagerChild_SettingView = import(".ManagerChild_SettingView")
|
2026-01-20 18:46:16 +08:00
|
|
|
local ManagerChild_BlackView = import(".ManagerChild_BlackView")
|
|
|
|
|
local ManagerChild_ForbidSameTableView = import(".ManagerChild_ForbidSameTableView")
|
|
|
|
|
local ManagerChild_RecordView = import(".ManagerChild_RecordView")
|
2026-01-04 21:54:26 +08:00
|
|
|
--成员
|
|
|
|
|
local ManagerMenberChild_PlayerView = import(".ManagerMenberChild_PlayerView")
|
2026-01-06 22:33:16 +08:00
|
|
|
local ManagerMenberChild_JoinsView = import(".ManagerMenberChild_JoinsView")
|
|
|
|
|
local ManagerMenberChild_ExitsView = import(".ManagerMenberChild_ExitsView")
|
|
|
|
|
local ManagerMenberChild_DisInviteView = import(".ManagerMenberChild_DisInviteView")
|
|
|
|
|
local ManagerMenberChild_DisSameDeskView = import(".ManagerMenberChild_DisSameDeskView")
|
2026-01-22 14:46:11 +08:00
|
|
|
--战绩
|
|
|
|
|
local ManagerRecordChild_BattleStatsView = import(".ManagerRecordChild_BattleStatsView")
|
2025-12-18 20:23:31 +08:00
|
|
|
|
|
|
|
|
local FamilyManagerTable = {}
|
|
|
|
|
|
|
|
|
|
local M = FamilyManagerTable
|
|
|
|
|
|
|
|
|
|
M.ManagerTable = {
|
2026-01-22 14:46:11 +08:00
|
|
|
--管理设置页面
|
2026-01-07 21:43:41 +08:00
|
|
|
{ id = 1, title = "基本设置", view = ManagerChild_SettingView },
|
|
|
|
|
{ id = 2, title = "成员管理", view = ManagerChild_PlayerView },
|
|
|
|
|
{ id = 3, title = "快速组局", view = ManagerChild_GamePlayView },
|
2026-01-20 18:46:16 +08:00
|
|
|
{ id = 4, title = "小黑屋管理", view = ManagerChild_BlackView },
|
2026-01-22 14:46:11 +08:00
|
|
|
{ id = 5, title = "禁止同桌", view = ManagerChild_ForbidSameTableView},
|
|
|
|
|
{ id = 6, title = "战绩统计", view = ManagerChild_RecordView},
|
2026-01-04 21:54:26 +08:00
|
|
|
--成员管理页面
|
2026-01-22 14:46:11 +08:00
|
|
|
{ id = 7, title = "成员列表", view = ManagerMenberChild_PlayerView },
|
|
|
|
|
{ id = 8, title = "进驻申请", view = ManagerMenberChild_JoinsView },
|
|
|
|
|
{ id = 9, title = "离开申请", view = ManagerMenberChild_ExitsView },
|
|
|
|
|
{ id = 10, title = "屏蔽邀请", view = ManagerMenberChild_DisInviteView },
|
|
|
|
|
{ id = 11, title = "禁止Ta进房", view = ManagerMenberChild_DisSameDeskView },
|
|
|
|
|
--战绩页面
|
|
|
|
|
{ id = 12, title = "战绩统计", view = ManagerRecordChild_BattleStatsView },
|
2025-12-18 20:23:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
M.ManagerShow = {
|
2026-01-20 18:46:16 +08:00
|
|
|
{ 1,2, 3,4,5,6}, --群主
|
2026-01-04 21:54:26 +08:00
|
|
|
{}, --代理
|
|
|
|
|
{} --用户
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
M.ManagerMenberShow = {
|
2026-01-22 14:46:11 +08:00
|
|
|
{ 7,8,9,10,11 }, --群主
|
|
|
|
|
{}, --代理
|
|
|
|
|
{} --用户
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
M.ManagerRecordShow = {
|
|
|
|
|
{ 12 }, --群主
|
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},
|
2026-01-22 14:46:11 +08:00
|
|
|
{id=3,url="ui://Family/FamilyManagerRecord",table = M.ManagerManger},
|
2026-01-04 21:54:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return M
|