BJBindViewController.swift 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. //
  2. // BJBindViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/8/12.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class BJBindViewController: BaseViewController {
  10. @IBOutlet weak var txtNo: UITextField!
  11. @IBOutlet weak var lblZC: UITextField!
  12. var arrRateContent = [String]()
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. self.title = "绑定终端"
  16. initNavLeftBackButton()
  17. }
  18. override func KeyboardHidden(gestureRecognizer: UIGestureRecognizer) {
  19. txtNo.resignFirstResponder()
  20. }
  21. //btnAddTarget(view: self.view, selector: #selector(self.btnMenuClick))
  22. @IBAction func btnMenuClick(_ sender: AnyObject) {
  23. switch (sender as! UIButton).tag {
  24. case 1001: // 扫码
  25. mainViewControllerIsGo = false
  26. let authStatus = AVCaptureDevice.authorizationStatus(for: AVMediaType.video)
  27. if authStatus == .restricted || authStatus == .denied {
  28. CommonUntils.alert(message: "您的相机功能已被禁用\r\n请到“设置>隐私>相机”中开启")
  29. return
  30. }
  31. let view = ScannerViewController()
  32. self.navigationController?.pushViewController(view, animated: true)
  33. break
  34. case 1002: // 确认绑定
  35. if txtNo.text!.length() < 1 {
  36. SVProgressHUD.showError(withStatus: "请输入终端号或点击右侧扫码按钮扫码")
  37. return
  38. }
  39. if lblZC.text!.length() < 1 {
  40. SVProgressHUD.showError(withStatus: "请选择政策")
  41. return
  42. }
  43. appDelegate.openMerchants.posTerminalNo = txtNo.text!
  44. loadData()
  45. break
  46. case 1003: //
  47. break
  48. case 1004: //
  49. break
  50. case 1005: //
  51. break
  52. case 1006: //政策
  53. self.getFeiLv()
  54. break
  55. default:
  56. break
  57. }
  58. }
  59. ///政策
  60. func getFeiLv() {
  61. let params = NSMutableDictionary()
  62. let url = RequestURL.getPolicyFlag
  63. loadDataList(url: url, params: params, tag: 1003)
  64. }
  65. // MARK: =============加载数据===============
  66. func loadData() {
  67. let url = RequestURL.openingMerchantsQyb
  68. let params = appDelegate.openMerchants.mj_keyValues()!
  69. print(params)
  70. submitData(url: url, params: params, tag: 1002)
  71. }
  72. override func returnData(tag: Int) {
  73. if tag == 1002 {
  74. //SVProgressHUD.showSuccess(withStatus: "提交成功");
  75. SVProgressHUD.showSuccess(withStatus: "信息提交成功,请等待审核!")
  76. if !CommonUntils.reBackView(controller: self, aclass: ShopManagerViewController.classForCoder()) {
  77. self.navigationController?.popToRootViewController(animated: true)
  78. }
  79. }
  80. if tag == 1003 {
  81. arrRateContent.removeAll()
  82. var arrTitle = [String]()
  83. for dic in self.arrData {
  84. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  85. let name = dicNew.getString(key: "name")
  86. arrTitle.append("\(String.init(format: "%@", name))")
  87. arrRateContent.append(String.init(format: "%@", name))
  88. }
  89. CommonUntils.AlertView(controller: self, title: nil, message: "请选择政策", buttons: arrTitle, style: .actionSheet) {[weak self] (index, _) in
  90. self!.lblZC.text = "\(self!.arrRateContent[index])"
  91. let dic = self!.arrData[index]
  92. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  93. let depositFlag = dicNew.getString(key: "depositFlag")
  94. let policyFlag = dicNew.getString(key: "policyFlag")
  95. appDelegate.openMerchants.policyFlag = policyFlag
  96. appDelegate.openMerchants.depositFlag = depositFlag
  97. }
  98. }
  99. }
  100. override func returnError(tag: Int, type: String) {
  101. }
  102. override func viewWillAppear(_ animated: Bool) {
  103. super.viewWillAppear(animated)
  104. if mainViewControllerIsGo {
  105. mainViewControllerIsGo = false
  106. txtNo.text = mainViewControllerIsGoValue
  107. }
  108. }
  109. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  110. super.init(nibName: "BJBindViewController", bundle: nil)
  111. }
  112. required init?(coder aDecoder: NSCoder) {
  113. fatalError("init(coder:) has not been implemented")
  114. }
  115. }