From 62a24b3c7cf92919a93ee575e9460037e1a53816 Mon Sep 17 00:00:00 2001 From: 杨锴 <841720330@qq.com> Date: 星期四, 07 十一月 2024 19:10:20 +0800 Subject: [PATCH] fix bug --- XQMuse/Root/Me/VC/WalletVC.swift | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/XQMuse/Root/Me/VC/WalletVC.swift b/XQMuse/Root/Me/VC/WalletVC.swift index 9682f6b..6fcd76a 100644 --- a/XQMuse/Root/Me/VC/WalletVC.swift +++ b/XQMuse/Root/Me/VC/WalletVC.swift @@ -45,7 +45,7 @@ } @IBAction func withdrawAction(_ sender: UIButton) { - let vc = BankWithdrawVC(income: walletModel?.income ?? 0) + let vc = BankWithdrawVC(income: walletModel?.balance ?? 0) push(vc: vc) } @@ -60,13 +60,14 @@ } @IBAction func commentAction(_ sender: TapBtn) { - let vc = MyCommentListVC() - vc.title = "我的推荐" - push(vc: vc) + let vc = WebVC(url: ShareUrl + "/ranking/recommend?userId=\(UserViewModel.getAvatarInfo().id)") + vc.title = "推荐名单" + push(vc: vc) + } @IBAction func popularizeAction(_ sender: TapBtn) { - let vc = MyCommentListVC() + let vc = InviteVC() vc.title = "推广活动" push(vc: vc) } -- Gitblit v1.7.1