//
|
// 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)
|
}
|
}
|