//
|
// BindPhone_2_VC.swift
|
// XQMuse
|
//
|
// Created by 无故事王国 on 2024/8/21.
|
//
|
|
import UIKit
|
import JQTools
|
import QMUIKit
|
|
class BindPhone_2_VC: BaseVC {
|
|
@IBOutlet weak var tf_phone: QMUITextField!
|
@IBOutlet weak var tf_code: QMUITextField!
|
@IBOutlet weak var btn_complete: UIButton!
|
override func viewDidLoad() {
|
super.viewDidLoad()
|
title = "更改绑定手机"
|
}
|
|
|
@IBAction func sendCodeAction(_ sender: UIButton) {
|
|
}
|
|
|
@IBAction func completeAction(_ sender: UIButton) {
|
let vc = BindPhone_3_VC()
|
vc.modalPresentationStyle = .fullScreen
|
present(vc, animated: true)
|
}
|
|
override func viewDidLayoutSubviews() {
|
super.viewDidLayoutSubviews()
|
btn_complete.jq_gradientNibColor(colorArr: [UIColor(hexStr: "#8EA47A").cgColor,UIColor(hexStr: "#AFCA98").cgColor], cornerRadius: 20)
|
}
|
}
|