Commit 76afd086 authored by Alex朱枝文's avatar Alex朱枝文

Merge branch 'develop' of http://gitlab.galaxy-immi.com/mobile-group/galaxy-iOS into develop

parents 791dcddd f0678440
......@@ -62,7 +62,7 @@ class YHMyNewViewController: YHBaseViewController {
[weak self] in
guard let self = self else { return }
if !checkLogin() { return }
enterMyNameCard()
enterUserInfoEditPage()
}
view.avatarClickBlock = {
......@@ -598,6 +598,14 @@ extension YHMyNewViewController {
}
}
func enterUserInfoEditPage() {
let vc = YHEditBaseUserInfoViewController()
vc.model = self.userViewModel.nameCardInfo
self.navigationController?.pushViewController(vc)
}
func inviteFriends() {
//判断是否登录成功
if YHLoginManager.shared.isLogin() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment