SpeedViewController.swift 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. //
  2. // SpeedViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Apple on 2020/10/24.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class SpeedViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. @IBOutlet weak var tableView: UITableView!
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13. self.title = "进度查询"
  14. initNavLeftBackButton()
  15. tableView.register(UINib(nibName: "ApplyCardBillTableViewCell", bundle: nil), forCellReuseIdentifier: "ApplyCardBillTableViewCell")
  16. tableView.delegate = self
  17. tableView.dataSource = self
  18. tableView.separatorStyle = .none
  19. tableView.showsVerticalScrollIndicator = false
  20. tableView.estimatedRowHeight = 100
  21. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  22. self!.currentPage = 1
  23. self!.loadData()
  24. })
  25. // tableView.mj_header.lastUpdatedTimeKey = "ApplyCardBillTableViewCell"
  26. // tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  27. // self!.currentPage += 1
  28. // self!.loadData()
  29. // })
  30. tableView.mj_header?.beginRefreshing()
  31. self.view.backgroundColor = tableView.backgroundColor
  32. // Do any additional setup after loading the view.
  33. }
  34. // MARK: =============加载数据===============
  35. func loadData() {
  36. let url = RequestURL.findResultByOrder
  37. let params = NSMutableDictionary()
  38. loadDataList(url: url, params: params, tableView: self.tableView, tag: 1001)
  39. }
  40. override func returnData(tag: Int) {
  41. if tag == 1001 {
  42. tableView.reloadData()
  43. }
  44. }
  45. override func returnError(tag: Int, type: String) {
  46. }
  47. // MARK: TABLEVLEW 实现
  48. func numberOfSections(in tableView: UITableView) -> Int {
  49. return 1
  50. }
  51. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  52. return self.arrData.count
  53. }
  54. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  55. return 100
  56. }
  57. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  58. let cell = tableView.dequeueReusableCell(withIdentifier: "ApplyCardBillTableViewCell", for: indexPath as IndexPath) as! ApplyCardBillTableViewCell
  59. cell.selectionStyle = .none
  60. cell.lblCard.text = CommonValue.formatCardNum(str: getString(current: indexPath.row, key: "identity_id"))
  61. cell.lblDate.text = getString(current: indexPath.row, key: "apply_time")
  62. cell.lblPhone.text = CommonValue.formatPhone(phone: getString(current: indexPath.row, key: "user_phone"))
  63. cell.lblCardName.text = getString(current: indexPath.row, key: "bank_name")
  64. cell.lblApplyName.text = "申请人:\(getString(current: indexPath.row, key: "user_name"))"
  65. cell.btnQuery.setTitle(getString(current: indexPath.row, key: "status"), for: .normal)
  66. return cell
  67. }
  68. @objc func btnQueryClick(btn: UIButton) {
  69. UIApplication.shared.openURL(URL(string: "http://card-dev.qdrsd.top/#/progress")!)
  70. }
  71. /*
  72. // MARK: - Navigation
  73. // In a storyboard-based application, you will often want to do a little preparation before navigation
  74. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  75. // Get the new view controller using segue.destination.
  76. // Pass the selected object to the new view controller.
  77. }
  78. */
  79. override func viewWillAppear(_ animated: Bool) {
  80. super.viewWillAppear(animated)
  81. self.tabBarController?.title = self.title
  82. }
  83. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  84. super.init(nibName: "SpeedViewController", bundle: nil)
  85. }
  86. required init?(coder aDecoder: NSCoder) {
  87. fatalError("init(coder:) has not been implemented")
  88. }
  89. }