SelectBankViewController.swift 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. //
  2. // SelectBankViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/3/30.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class SelectBankViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate, UITextFieldDelegate {
  10. @IBOutlet weak var tableView: UITableView!
  11. @IBOutlet weak var imgBackgroud: UIImageView!
  12. @IBOutlet weak var txtCode: UITextField!
  13. @IBOutlet weak var viewMenu: UIView!
  14. var provinceId = ""
  15. var cityId = ""
  16. var shopEntity: ShopOpenEntity!
  17. var bankName = ""
  18. var bankbName = ""
  19. override func viewDidLoad() {
  20. super.viewDidLoad()
  21. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  22. viewNav.initView(title: "选择支行") {[weak self] (index, _) in
  23. if index == 0 {
  24. self!.handleBack()
  25. }
  26. }
  27. self.view.addSubview(viewNav)
  28. viewNav.marginTop(top: 0)
  29. self.view.addSubview(viewNav)
  30. viewNav.marginTop(top: 0)
  31. viewMenu.marginTop(top: viewNav.bottom())
  32. txtCode.setCornerRadius(size: 4)
  33. txtCode.setContentMarginLeft(leftWidth: 15)
  34. txtCode.setContentMarginRight(rightWidth: 30)
  35. imgBackgroud.setSizeHeight(height: viewMenu.bottom())
  36. tableView.marginTop(top: 0, view: imgBackgroud)
  37. tableView.setSizeHeight(height: ScreenHeight - imgBackgroud.height())
  38. tableView.register(UINib(nibName: "SelectBankTableViewCell", bundle: nil), forCellReuseIdentifier: "SelectBankTableViewCell")
  39. tableView.delegate = self
  40. tableView.dataSource = self
  41. tableView.separatorStyle = .none
  42. tableView.showsVerticalScrollIndicator = false
  43. tableView.estimatedRowHeight = 100
  44. tableView.keyboardDismissMode = .onDrag
  45. txtCode.delegate = self
  46. txtCode.returnKeyType = .search
  47. }
  48. @IBAction func btnQuery(_ sender: Any) {
  49. loadData(key: "")
  50. }
  51. func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
  52. // if(string != "")
  53. // {
  54. // loadData(str:"\(textField.text!)\(string)");
  55. // }
  56. // else
  57. // {
  58. // if(textField.text!.length() > 1)
  59. // {
  60. // loadData(str:"\(textField.text!.substringTo(index: textField.text!.length() - 1))");
  61. // }
  62. // else
  63. // {
  64. // arrData.removeAllObjects();
  65. // tableView.reloadData();
  66. // }
  67. // }
  68. return true
  69. }
  70. func textFieldShouldReturn(_ textField: UITextField) -> Bool {
  71. loadData(key: "")
  72. return true
  73. }
  74. // MARK: =============加载数据===============
  75. func loadDataOld(key: String) //str:String
  76. {
  77. if (txtCode.text! == "未识别银行") {
  78. return
  79. }
  80. let url = RequestURL.findBankList
  81. let params = NSMutableDictionary()
  82. params.setValue(provinceId, forKey: "provinceId")
  83. params.setValue(cityId, forKey: "cityId")
  84. if key != "" {
  85. params.setValue(key, forKey: "bankName")
  86. } else {
  87. params.setValue("\(txtCode.text!)\(bankName)", forKey: "bankName")
  88. }
  89. loadDataList(url: url, params: params, tableView: tableView, tag: 1001)
  90. }
  91. func loadData(key: String) //str:String
  92. {
  93. if (txtCode.text! == "未识别银行") {
  94. return
  95. }
  96. let url = RequestURL.openBankList
  97. let params = NSMutableDictionary()
  98. // params.setValue(provinceId, forKey: "provinceId")
  99. // params.setValue(cityId, forKey: "cityId")
  100. if key != "" {
  101. params.setValue(key, forKey: "bankName")
  102. } else {
  103. params.setValue("\(txtCode.text!)\(bankName)", forKey: "bankName")
  104. }
  105. loadDataList(url: url, params: params, tableView: tableView, tag: 1001)
  106. }
  107. override func returnData(tag: Int) {
  108. if tag == 1001 {
  109. tableView.reloadData()
  110. }
  111. }
  112. override func returnError(tag: Int, type: String) {
  113. }
  114. // MARK: TABLEVLEW 实现
  115. func numberOfSections(in tableView: UITableView) -> Int {
  116. return 1
  117. }
  118. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  119. return self.arrData.count
  120. }
  121. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  122. return 48
  123. }
  124. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  125. let cell = tableView.dequeueReusableCell(withIdentifier: "SelectBankTableViewCell", for: indexPath as IndexPath) as! SelectBankTableViewCell
  126. cell.lblTitle.text = getString(current: indexPath.row, key: "bank_name")
  127. //cell.lblTitle.text = getString(indexPath.row, key: "Name")
  128. return cell
  129. }
  130. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  131. mainViewControllerIsGo = true
  132. mainViewControllerIsGoType = 0
  133. mainViewControllerIsGoValue = getString(current: indexPath.row, key: "bank_name")
  134. mainViewControllerIsGoValue1 = getString(current: indexPath.row, key: "bank_no")
  135. mainViewControllerIsGoValue2 = getString(current: indexPath.row, key: "parent_bank_no")
  136. handleBack()
  137. }
  138. override func viewWillAppear(_ animated: Bool) {
  139. super.viewWillAppear(animated)
  140. appDelegate.setNavigationBarHidden(isHidden: true)
  141. if bankName != "" && bankName != "未识别银行" {
  142. loadData(key: bankName)
  143. } else {
  144. loadData(key: "")
  145. }
  146. }
  147. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  148. super.init(nibName: "SelectBankViewController", bundle: nil)
  149. }
  150. required init?(coder aDecoder: NSCoder) {
  151. fatalError("init(coder:) has not been implemented")
  152. }
  153. }