CommonSelectViewController.swift 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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 CommonSelectViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate, UITextFieldDelegate {
  10. var delegate: CommonDelegate!
  11. @IBOutlet weak var tableView: UITableView!
  12. @IBOutlet weak var textF: UITextField!
  13. @IBOutlet weak var viewMenu: UIView!
  14. /// 0:行业类别编码 1:MCC列表 2:选择结算银行
  15. var type = 0
  16. var height = 0
  17. let arrTitle = ["选择行业类别", "选择经营范围", "选择结算银行"]
  18. override func viewDidLoad() {
  19. super.viewDidLoad()
  20. self.title = arrTitle[type]
  21. initNavLeftBackButton()
  22. if CommonUntils.isIphonex() {
  23. height = 88
  24. } else {
  25. height = 64
  26. }
  27. viewMenu.marginTop(top: 0)
  28. tableView.marginTop(top: 1, view: viewMenu)
  29. tableView.setSizeHeight(height: ScreenHeight - viewMenu.height() - CGFloat(height))
  30. tableView.register(UINib(nibName: "SelectBankTableViewCell", bundle: nil), forCellReuseIdentifier: "SelectBankTableViewCell")
  31. tableView.delegate = self
  32. tableView.dataSource = self
  33. tableView.separatorStyle = .none
  34. tableView.showsVerticalScrollIndicator = false
  35. tableView.estimatedRowHeight = 100
  36. tableView.keyboardDismissMode = .onDrag
  37. textF.delegate = self
  38. textF.returnKeyType = .search
  39. loadData()
  40. }
  41. func textFieldShouldReturn(_ textField: UITextField) -> Bool {
  42. self.currentPage = 1
  43. loadData()
  44. return true
  45. }
  46. @IBAction func btnQuery(_ sender: Any) {
  47. self.currentPage = 1
  48. loadData()
  49. }
  50. // MARK: =============加载数据===============
  51. func loadData() //str:String
  52. {
  53. var url = RequestURL.customMccTypeList
  54. let params = NSMutableDictionary()
  55. if type == 1 {
  56. url = RequestURL.mccNameList
  57. params.setValue(textF.text, forKey: "mcc_name")
  58. } else if type == 2 {
  59. url = RequestURL.qybFindBankList
  60. }
  61. loadDataList(url: url, params: params, tableView: tableView, tag: 1001)
  62. }
  63. override func returnData(tag: Int) {
  64. if tag == 1001 {
  65. tableView.reloadData()
  66. }
  67. }
  68. override func returnError(tag: Int, type: String) {
  69. }
  70. // MARK: TABLEVLEW 实现
  71. func numberOfSections(in tableView: UITableView) -> Int {
  72. return 1
  73. }
  74. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  75. return self.arrData.count
  76. }
  77. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  78. return 53
  79. }
  80. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  81. let cell = tableView.dequeueReusableCell(withIdentifier: "SelectBankTableViewCell", for: indexPath as IndexPath) as! SelectBankTableViewCell
  82. if type == 0 {
  83. cell.lblTitle.text = getString(current: indexPath.row, key: "name")
  84. } else if type == 1 {
  85. cell.lblTitle.text = getString(current: indexPath.row, key: "mcc_name")
  86. } else if type == 2 {
  87. cell.lblTitle.text = getString(current: indexPath.row, key: "issuser_name")
  88. }
  89. return cell
  90. }
  91. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  92. delegate.rebackFunction(dic: NSMutableDictionary(dictionary: self.arrData[indexPath.row] as! NSDictionary))
  93. handleBack()
  94. }
  95. override func viewWillAppear(_ animated: Bool) {
  96. super.viewWillAppear(animated)
  97. }
  98. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  99. super.init(nibName: "CommonSelectViewController", bundle: nil)
  100. }
  101. required init?(coder aDecoder: NSCoder) {
  102. fatalError("init(coder:) has not been implemented")
  103. }
  104. }