19 lines
498 B
Lua
19 lines
498 B
Lua
|
|
local ManagerChild_GamePlayView = import(".ManagerChild_GamePlayView")
|
||
|
|
local ManagerChild_PlayerView = import(".ManagerChild_PlayerView")
|
||
|
|
|
||
|
|
local FamilyManagerTable = {}
|
||
|
|
|
||
|
|
local M = FamilyManagerTable
|
||
|
|
|
||
|
|
M.ManagerTable = {
|
||
|
|
{id=1,title="成员管理",icon="ui://Family/成员管理",view=ManagerChild_PlayerView},
|
||
|
|
{id=2,title="快速组局",icon="ui://Family/快速组局",view=ManagerChild_GamePlayView},
|
||
|
|
}
|
||
|
|
|
||
|
|
M.ManagerShow = {
|
||
|
|
{1,2}, --群主
|
||
|
|
{}, --代理
|
||
|
|
{} --用户
|
||
|
|
}
|
||
|
|
|
||
|
|
return M
|