UpMessageCardViewController.swift 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. //
  2. // UpMessageCardViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Apple on 2020/10/23.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class UpMessageCardViewController: BaseViewController, AVCaptureViewControllerDelegate {
  10. @IBOutlet weak var nameTextField: UITextField!
  11. @IBOutlet weak var nextBtn: UIButton!
  12. @IBOutlet weak var idCardTextField: UITextField!
  13. @IBOutlet weak var phoneTextField: UITextField!
  14. @IBOutlet weak var touchbtn: UIButton!
  15. var dic = NSDictionary.init()
  16. override func viewDidLoad() {
  17. super.viewDidLoad()
  18. initNavLeftBackButton()
  19. self.title = (dic["name"]as!String)
  20. nextBtn.layer.cornerRadius = 5
  21. // Do any additional setup after loading the view.
  22. }
  23. @IBAction func touchbtnact(_ sender: Any) {
  24. let vc = AVCaptureViewController()
  25. vc.delegate = self
  26. vc.cardType = 0
  27. self.present(vc, animated: true) {
  28. }
  29. }
  30. func avCaptureViewReData(_ iDInfo: IDInfo!, img: UIImage!) {
  31. print(iDInfo.num as Any)
  32. nameTextField.text = iDInfo.name
  33. idCardTextField.text = iDInfo.num
  34. //txtIDCard.text = iDInfo.num!
  35. //imgShow.image = img;
  36. }
  37. @IBAction func nextBtnAct(_ sender: Any) {
  38. if CommonValidate.isPhoneNumber(num: phoneTextField!.text! as NSString) {
  39. } else {
  40. SVProgressHUD.showError(withStatus: "请输入正确的手机号")
  41. return
  42. }
  43. if CommonValidate.checkIdentityCardNumber(idCardTextField.text!) {
  44. } else {
  45. SVProgressHUD.showError(withStatus: "请输入正确的身份证号")
  46. return
  47. }
  48. let params = NSMutableDictionary()
  49. params.setValue(dic["code"]as!String, forKey: "bankCode")
  50. params.setValue(nameTextField.text!, forKey: "acount")
  51. params.setValue(idCardTextField.text!, forKey: "accountNo")
  52. params.setValue(phoneTextField.text!, forKey: "phoneNum")
  53. print(params)
  54. let http = AFHTTPSessionManager()
  55. http.post(RequestURL.submitApplication, parameters: params, progress: { (_) in
  56. }, success: { (operation, json) in
  57. print(json as Any)
  58. let success = (json as! NSDictionary).object(forKey: "succeed") as! String
  59. if success == "000"{
  60. let vc = ApplyCardebViewTViewController()
  61. vc.urlStr = (json as! NSDictionary).object(forKey: "url") as! String
  62. vc.titlet = (self.dic["name"]as!String)
  63. self.toViewController(viewController: vc)
  64. } else {
  65. SVProgressHUD.showError(withStatus: ((json as! NSDictionary).object(forKey: "sucInfo") as! String))
  66. }
  67. }) { (_, _) in
  68. }
  69. }
  70. /*
  71. // MARK: - Navigation
  72. // In a storyboard-based application, you will often want to do a little preparation before navigation
  73. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  74. // Get the new view controller using segue.destination.
  75. // Pass the selected object to the new view controller.
  76. }
  77. */
  78. override func viewWillAppear(_ animated: Bool) {
  79. super.viewWillAppear(animated)
  80. }
  81. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  82. super.init(nibName: "UpMessageCardViewController", bundle: nil)
  83. }
  84. required init?(coder aDecoder: NSCoder) {
  85. fatalError("init(coder:) has not been implemented")
  86. }
  87. }