BJSelectBankViewController.swift 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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 BJSelectBankViewController: 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. override func viewDidLoad() {
  19. super.viewDidLoad()
  20. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  21. viewNav.initView(title: "选择结算银行") {[weak self] (index, _) in
  22. if index == 0 {
  23. self!.handleBack()
  24. }
  25. }
  26. self.view.addSubview(viewNav)
  27. viewNav.marginTop(top: 0)
  28. self.view.addSubview(viewNav)
  29. viewNav.marginTop(top: 0)
  30. viewMenu.marginTop(top: viewNav.bottom())
  31. txtCode.setCornerRadius(size: 4)
  32. txtCode.setContentMarginLeft(leftWidth: 15)
  33. txtCode.setContentMarginRight(rightWidth: 30)
  34. imgBackgroud.setSizeHeight(height: viewMenu.bottom())
  35. tableView.marginTop(top: 0, view: imgBackgroud)
  36. tableView.setSizeHeight(height: ScreenHeight - imgBackgroud.height())
  37. tableView.register(UINib(nibName: "SelectBankTableViewCell", bundle: nil), forCellReuseIdentifier: "SelectBankTableViewCell")
  38. tableView.delegate = self
  39. tableView.dataSource = self
  40. tableView.separatorStyle = .none
  41. tableView.showsVerticalScrollIndicator = false
  42. tableView.estimatedRowHeight = 100
  43. tableView.keyboardDismissMode = .onDrag
  44. txtCode.delegate = self
  45. txtCode.returnKeyType = .search
  46. }
  47. @IBAction func btnQuery(_ sender: Any) {
  48. loadData(key: "")
  49. }
  50. func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
  51. return true
  52. }
  53. func textFieldShouldReturn(_ textField: UITextField) -> Bool {
  54. loadData(key: "")
  55. return true
  56. }
  57. // MARK: =============加载数据===============
  58. func loadData(key: String) //str:String
  59. {
  60. if (txtCode.text! == "未识别银行"){
  61. return
  62. }
  63. let url = RequestURL.qybFindBankList
  64. let params = NSMutableDictionary()
  65. if key != "" {
  66. params.setValue(key, forKey: "issuser_name")
  67. } else {
  68. params.setValue(txtCode.text!, forKey: "issuser_name")
  69. }
  70. loadDataList(url: url, params: params, tableView: tableView, tag: 1001)
  71. }
  72. override func returnData(tag: Int) {
  73. if tag == 1001 {
  74. tableView.reloadData()
  75. }
  76. }
  77. override func returnError(tag: Int, type: String) {
  78. }
  79. // MARK: TABLEVLEW 实现
  80. func numberOfSections(in tableView: UITableView) -> Int {
  81. return 1
  82. }
  83. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  84. return self.arrData.count
  85. }
  86. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  87. return 48
  88. }
  89. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  90. let cell = tableView.dequeueReusableCell(withIdentifier: "SelectBankTableViewCell", for: indexPath as IndexPath) as! SelectBankTableViewCell
  91. cell.lblTitle.text = getString(current: indexPath.row, key: "issuser_name")
  92. return cell
  93. }
  94. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  95. mainViewControllerIsGo = true
  96. mainViewControllerIsGoType = 9901
  97. mainViewControllerIsGoValue = getString(current: indexPath.row, key: "issuser_name")
  98. mainViewControllerIsGoValue1 = getString(current: indexPath.row, key: "bank_code")
  99. mainViewControllerIsGoValue2 = getString(current: indexPath.row, key: "bank_link_no")
  100. handleBack()
  101. }
  102. override func viewWillAppear(_ animated: Bool) {
  103. super.viewWillAppear(animated)
  104. appDelegate.setNavigationBarHidden(isHidden: true)
  105. if bankName != "" && bankName != "未识别银行" {
  106. loadData(key: bankName)
  107. } else {
  108. loadData(key: "")
  109. }
  110. }
  111. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  112. super.init(nibName: "BJSelectBankViewController", bundle: nil)
  113. }
  114. required init?(coder aDecoder: NSCoder) {
  115. fatalError("init(coder:) has not been implemented")
  116. }
  117. }