DelegateListForActiveViewController.swift 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. //
  2. // DelegateListForActiveViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/9/4.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. typealias SelectDelegateBlock = (NSDictionary) -> Void
  10. class DelegateListForActiveViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  11. @IBOutlet weak var imgBgView: UIImageView!
  12. @IBOutlet weak var searchView: UIView!
  13. @IBOutlet weak var searchTextField: UITextField!
  14. @IBOutlet weak var searchBtn: UIButton!
  15. @IBOutlet weak var tableView: UITableView!
  16. var selectBlock: SelectDelegateBlock?
  17. override func viewWillAppear(_ animated: Bool) {
  18. super.viewWillAppear(animated)
  19. appDelegate.setNavigationBarHidden(isHidden: true)
  20. }
  21. override func viewDidLoad() {
  22. super.viewDidLoad()
  23. navInit()
  24. tableViewInit()
  25. loadData()
  26. }
  27. // 自定义导航栏
  28. func navInit() {
  29. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  30. viewNav.initView(title: "选择代理") {[weak self] (index, _) in
  31. if index == 0 {
  32. self!.handleBack()
  33. }
  34. }
  35. self.view.addSubview(viewNav)
  36. viewNav.marginTop(top: 0)
  37. searchView.marginTop(top: viewNav.bottom())
  38. imgBgView.translatesAutoresizingMaskIntoConstraints = false
  39. let h: NSLayoutConstraint = NSLayoutConstraint(item: imgBgView as Any, attribute: .height, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 0.0, constant: searchView.bottom())
  40. imgBgView.addConstraint(h)
  41. }
  42. func tableViewInit() {
  43. tableView.delegate = self
  44. tableView.dataSource = self
  45. tableView.tableFooterView = UIView.init()
  46. tableView.register(UINib(nibName: "DelegateListCell", bundle: nil), forCellReuseIdentifier: "DelegateListCell")
  47. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  48. self!.currentPage = 1
  49. self!.loadData()
  50. })
  51. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  52. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  53. self!.currentPage += 1
  54. self!.loadData()
  55. })
  56. }
  57. // MARK: - request
  58. func loadData() {
  59. let url = RequestURL.myAgentList
  60. let params = NSMutableDictionary()
  61. params.setValue(CommonValue.getUserId(), forKey: "userId")
  62. params.setValue(searchTextField.text!, forKey: "likeStr")
  63. loadDataList(url: url, params: params, tableView: tableView, tag: 1001)
  64. }
  65. override func returnData(tag: Int) {
  66. tableView.reloadData()
  67. }
  68. override func returnError(tag: Int, type: String) {
  69. }
  70. // MARK: - action
  71. @IBAction func searchBtnClicked(_ sender: Any) {
  72. self.view.endEditing(true)
  73. self.currentPage = 1
  74. loadData()
  75. }
  76. // MARK: - delegate
  77. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  78. return arrData.count
  79. }
  80. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  81. return 60
  82. }
  83. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  84. let cell: DelegateListCell = tableView.dequeueReusableCell(withIdentifier: "DelegateListCell", for: indexPath) as! DelegateListCell
  85. cell.selectionStyle = .none
  86. if getString(current: indexPath.row, key: "realName") == "" {
  87. cell.titleLabel.text = "未实名"
  88. } else {
  89. cell.titleLabel.text = "\(getString(current: indexPath.row, key: "realName")) "
  90. }
  91. let phone = "\(getString(current: indexPath.row, key: "phone"))"
  92. if phone.length() > 7 {
  93. cell.phoneLabel.text = "\(phone.substringTo(index: 3))****\(phone.substringFrom(index: 7))"
  94. } else {
  95. cell.phoneLabel.text = "\(phone.substringTo(index: 3))****"
  96. }
  97. cell.codeLabel.text = "(推荐码:\(getString(current: indexPath.row, key: "recCode")))"
  98. return cell
  99. }
  100. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  101. if selectBlock != nil {
  102. selectBlock!(arrData[indexPath.row] as! NSDictionary)
  103. self.navigationController?.popViewController(animated: true)
  104. }
  105. }
  106. /*
  107. // MARK: - Navigation
  108. // In a storyboard-based application, you will often want to do a little preparation before navigation
  109. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  110. // Get the new view controller using segue.destination.
  111. // Pass the selected object to the new view controller.
  112. }
  113. */
  114. }