younger_times
2023-04-25 4c5d82210f610d71878aa19c73413b40b3313207
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
//
//  PersonalCenterVC.swift
//  BrokerDriver
//
//  Created by 无故事王国 on 2023/4/25.
//
 
import UIKit
 
class PersonalCenterVC: BaseViewController {
 
    override func viewDidLoad() {
        super.viewDidLoad()
        title = "Personal Center"
    }
 
    @IBAction func profileAction(_ sender: TapButton) {
        let vc = PersonalDataVC()
        push(vc: vc)
    }
 
    @IBAction func walletAction(_ sender: TapButton) {
        let vc = PersonalWalletVC()
        push(vc: vc)
    }
 
    @IBAction func truckCompanyAction(_ sender: TapButton) {
        let vc = CompanyVC()
        push(vc: vc)
    }
}