杨锴
2024-09-19 642175113bf6f2c90894e689dacda50278cad570
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
//
//  BindAccountVC.swift
//  XQMuse
//
//  Created by 无故事王国 on 2024/8/21.
//
 
import UIKit
 
class BindAccountVC: BaseVC {
                @IBOutlet weak var label_phone: UILabel!
                @IBOutlet weak var label_wchatBindState: UILabel!
                
    override func viewDidLoad() {
        super.viewDidLoad()
                                title = "账号绑定"
                                label_phone.text = UserViewModel.getAvatarInfo().cellPhone.jq_blotOutPhone()
 
    }
 
                @IBAction func bindPhoneAction(_ sender: Any) {
                                let vc = BindPhone_1_VC()
                                push(vc: vc)
                }
 
 
                @IBAction func updatePwdAction(_ sender: TapBtn) {
                                let vc = ForgotPasswordVC()
                                push(vc: vc)
                }
                
}