UpdatePasswordViewController.swift 534 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // UpdatePasswordViewController.swift
  3. // JiaPeiManage
  4. //
  5. // Created by Ning.ge on 2023/6/15.
  6. //
  7. import UIKit
  8. import RxSwift
  9. import RxCocoa
  10. final class UpdatePasswordViewController: BaseViewController {
  11. // MARK: 服务属性
  12. // MARK: UI属性
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. setupUI()
  16. }
  17. // MARK: 私有方法
  18. func setupUI(){
  19. self.view.backgroundColor = .db_theme
  20. }
  21. //绑定-rx
  22. func biandView(){
  23. }
  24. }