杨锴
2024-08-22 5ca691ec52cb4bb64841b0d85252af762e48c2ca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
//  WalletVC.swift
//  XQMuse
//
//  Created by 无故事王国 on 2024/8/21.
//
 
import UIKit
 
class WalletVC: BaseVC {
 
    override func viewDidLoad() {
        super.viewDidLoad()
                                title = "钱包"
    }
 
                override func setUI() {
                                view.backgroundColor = UIColor(hexString: "#fafafa")
                }
 
                @IBAction func withdrawAction(_ sender: UIButton) {
                                let vc = BankWithdrawVC()
                                push(vc: vc)
                }
 
                @IBAction func recharegeAction(_ sender: UIButton) {
                                let vc = WalletRechargeVC()
                                push(vc: vc)
                }
 
                @IBAction func spendingDetailAction(_ sender: TapBtn) {
                                let vc = SpendingDetailVC()
                                push(vc: vc)
                }
                
                @IBAction func commentAction(_ sender: TapBtn) {
                                let vc = MyCommentListVC()
                                vc.title = "我的推荐"
                                push(vc: vc)
                }
 
                @IBAction func popularizeAction(_ sender: TapBtn) {
                                let vc = MyCommentListVC()
                                vc.title = "推广活动"
                                push(vc: vc)
                }
                
}