MyWalletListViewController.swift 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. //
  2. // MyWalletListViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/4/12.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class MyWalletListViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. @IBOutlet weak var tableView: UITableView!
  11. @IBOutlet weak var viewMenu: UIView!
  12. /// 0:pos机收益 1:办卡收益 2:积分收益 3:激活奖励
  13. var type = 0
  14. override func viewDidLoad() {
  15. super.viewDidLoad()
  16. self.title = "我的钱包"
  17. initNavLeftBackButton()
  18. let segment = Virgil_SegmentView(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: 47), titles: ["POS机", "激活奖励", "办卡", "积分"], defaultColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x333333, alpha: 1.0), currentColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x2094F5, alpha: 1.0), lineHeight: 2, lineIsBottom: true) {[weak self] (index) in
  19. if index == 0 {
  20. self!.type = 0
  21. } else if index == 1 {
  22. self!.type = 3
  23. } else if index == 2 {
  24. self!.type = 1
  25. } else if index == 3 {
  26. self!.type = 2
  27. }
  28. self!.currentPage = 1
  29. self!.tableView.mj_header?.beginRefreshing()
  30. }
  31. self.viewMenu.addSubview(segment)
  32. tableView.register(UINib(nibName: "MyWalletListTableViewCell", bundle: nil), forCellReuseIdentifier: "MyWalletListTableViewCell")
  33. tableView.delegate = self
  34. tableView.dataSource = self
  35. tableView.separatorStyle = .none
  36. tableView.showsVerticalScrollIndicator = false
  37. tableView.estimatedRowHeight = 100
  38. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  39. self!.currentPage = 1
  40. self!.loadData()
  41. })
  42. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  43. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  44. self!.currentPage += 1
  45. self!.loadData()
  46. })
  47. segment.setTabIndex(index: type)
  48. tableView.mj_header?.beginRefreshing()
  49. }
  50. // MARK: =============加载数据===============
  51. func loadData() {
  52. // if(self.currentPage == 1)
  53. // {
  54. // self.arrData.removeAllObjects()
  55. // }
  56. // for i in 0 ..< 20
  57. // {
  58. // self.arrData.add(i)
  59. // }
  60. // returnData(tag:1001)
  61. // tableView.mj_header.endRefreshing()
  62. // tableView.mj_footer.endRefreshing()
  63. let url = RequestURL.walletList
  64. let params = NSMutableDictionary()
  65. params.setValue(type, forKey: "type")
  66. loadDataList(url: url, params: params, tableView: tableView, tag: 1001)
  67. }
  68. override func returnData(tag: Int) {
  69. if tag == 1001 {
  70. tableView.reloadData()
  71. }
  72. }
  73. override func returnError(tag: Int, type: String) {
  74. }
  75. // MARK: TABLEVLEW 实现
  76. func numberOfSections(in tableView: UITableView) -> Int {
  77. return 1
  78. }
  79. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  80. return self.arrData.count
  81. }
  82. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  83. return 68
  84. }
  85. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  86. let cell = tableView.dequeueReusableCell(withIdentifier: "MyWalletListTableViewCell", for: indexPath as IndexPath) as! MyWalletListTableViewCell
  87. cell.lblName.text = getString(current: indexPath.row, key: "name")
  88. cell.lblMoney.text = "+\(getDoubleValue(current: indexPath.row, key: "wallet_amount", defaultValue: 0.0))"
  89. cell.lblDate.text = getString(current: indexPath.row, key: "createtime")
  90. cell.lblAmountMoney.text = "交易总额:\(getDoubleValue(current: indexPath.row, key: "amount_total", defaultValue: 0.0))"
  91. if self.type == 0 {
  92. cell.lblMoney.marginTop(top: 20)
  93. cell.lblAmountMoney.isHidden = false
  94. } else {
  95. cell.lblMoney.marginTop(top: 27)
  96. cell.lblAmountMoney.isHidden = true
  97. }
  98. //cell.lblAmountMoney.isHidden = true;
  99. return cell
  100. }
  101. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  102. // let view = UIViewController()
  103. // view.oneGoId = self.arrData[indexPath.row]["ItemId"] as! Int
  104. // self.navigationController?.pushViewController(view, animated: true)
  105. }
  106. override func viewWillAppear(_ animated: Bool) {
  107. super.viewWillAppear(animated)
  108. }
  109. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  110. super.init(nibName: "MyWalletListViewController", bundle: nil)
  111. }
  112. required init?(coder aDecoder: NSCoder) {
  113. fatalError("init(coder:) has not been implemented")
  114. }
  115. }