初始化

master
罗家炜 2025-05-22 14:44:25 +08:00
parent d8504b8a13
commit 47bcdd3a74
1 changed files with 16 additions and 0 deletions

View File

@ -70,6 +70,22 @@ end
function M:ShareWx() function M:ShareWx()
local familyInviteFamilyView = FamilyInviteFamilyView.new() local familyInviteFamilyView = FamilyInviteFamilyView.new()
familyInviteFamilyView:Show() familyInviteFamilyView:Show()
local fgCtr = ControllerManager.GetController(NewGroupController)
fgCtr:FG_GroupMembers12(
self.group_id,
0,
100,
1,
2,
function(res)
ViewUtil.CloseModalWait()
if res.ReturnCode ~= 0 then
ViewUtil.ErrorTip(res.ReturnCode, '获取成员列表失败')
else
end
end
)
end end
function M:CreateFamily(frist) function M:CreateFamily(frist)