From e978b3aa02f00859588949dfdf24778b05fe4adb Mon Sep 17 00:00:00 2001 From: 杨锴 <841720330@qq.com> Date: 星期三, 21 八月 2024 18:58:30 +0800 Subject: [PATCH] fix UI --- XQMuse/Root/Me/VC/SettingVC.swift | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) diff --git a/XQMuse/Root/Me/VC/SettingVC.swift b/XQMuse/Root/Me/VC/SettingVC.swift index 1b8931d..2af4b14 100644 --- a/XQMuse/Root/Me/VC/SettingVC.swift +++ b/XQMuse/Root/Me/VC/SettingVC.swift @@ -19,4 +19,37 @@ super.setUI() view.backgroundColor = UIColor(hexString: "#fafafa") } + + @IBAction func bindPhoneAction(_ sender: TapBtn) { + let vc = BindAccountVC() + push(vc: vc) + } + + @IBAction func cancelCacheAction(_ sender: TapBtn) { + alertSuccess(msg: "清理成功") + } + + @IBAction func aboutUsAction(_ sender: TapBtn) { + let vc = WebVC() + vc.title = "关于心泉" + push(vc: vc) + } + + @IBAction func logoutAction(_ sender: TapBtn) { + let vc = LogoutAccountVC() + push(vc: vc) + } + + @IBAction func treatyAction(_ sender: TapBtn) { + let vc = TreatyVC() + push(vc: vc) + } + + @IBAction func exchangeAccountAction(_ sender: UIButton) { + + } + + @IBAction func quitAccountAction(_ sender: UIButton) { + + } } -- Gitblit v1.7.1