ProfitListViewController.swift 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. //
  2. // ProfitListViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/7/16.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class ProfitListViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. ///0:办卡 1:兑换
  11. var type = 0
  12. @IBOutlet weak var tableView: UITableView!
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. self.title = type == 0 ? "推荐办卡收益" : "积分兑换收益"
  16. initNavLeftBackButton()
  17. tableView.register(UINib(nibName: "ProfitListTableViewCell", bundle: nil), forCellReuseIdentifier: "ProfitListTableViewCell")
  18. tableView.delegate = self
  19. tableView.dataSource = self
  20. tableView.separatorStyle = .none
  21. tableView.showsVerticalScrollIndicator = false
  22. tableView.estimatedRowHeight = 100
  23. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  24. self!.currentPage = 1
  25. self!.loadData()
  26. })
  27. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  28. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  29. self!.currentPage += 1
  30. self!.loadData()
  31. })
  32. loadData()
  33. }
  34. // MARK: =============加载数据===============
  35. func loadData() {
  36. let url = RequestURL.creditScoreListPage
  37. let params = NSMutableDictionary()
  38. params.setValue(type, forKey: "type")
  39. loadDataList(url: url, params: params, tableView: self.tableView, tag: 1001)
  40. }
  41. override func returnData(tag: Int) {
  42. if tag == 1001 {
  43. tableView.reloadData()
  44. }
  45. }
  46. override func returnError(tag: Int, type: String) {
  47. }
  48. // MARK: TABLEVLEW 实现
  49. func numberOfSections(in tableView: UITableView) -> Int {
  50. return 1
  51. }
  52. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  53. return self.arrData.count
  54. }
  55. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  56. return 70
  57. }
  58. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  59. let cell = tableView.dequeueReusableCell(withIdentifier: "ProfitListTableViewCell", for: indexPath as IndexPath) as! ProfitListTableViewCell
  60. cell.lblTitle.text = getString(current: indexPath.row, key: "name")
  61. cell.lblDate.text = getString(current: indexPath.row, key: "createtime")
  62. cell.lblMoney.text = "+\(getDoubleValue(current: indexPath.row, key: "wallet_amount", defaultValue: 0.00))"
  63. return cell
  64. }
  65. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  66. let view = ProfitDetailViewController()
  67. view.id = getString(current: indexPath.row, key: "id")
  68. self.navigationController?.pushViewController(view, animated: true)
  69. }
  70. override func viewWillAppear(_ animated: Bool) {
  71. super.viewWillAppear(animated)
  72. }
  73. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  74. super.init(nibName: "ProfitListViewController", bundle: nil)
  75. }
  76. required init?(coder aDecoder: NSCoder) {
  77. fatalError("init(coder:) has not been implemented")
  78. }
  79. }