TiXianRecordListViewController.swift 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. //
  2. // TiXianRecordListViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/4/21.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class TiXianRecordListViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. @IBOutlet weak var viewMenu: UIView!
  11. @IBOutlet weak var tableView: UITableView!
  12. var machineTypeId: String = ""
  13. ///返回类型 0:返回上一个页面 1:返回我的钱包页
  14. var backType = 0
  15. var status = 999
  16. override func viewDidLoad() {
  17. super.viewDidLoad()
  18. self.title = "提现记录"
  19. initNavLeftBackButton()
  20. let segment = Virgil_SegmentView(frame: CGRect(x: 0, y: 3, width: ScreenWidth, height: 45), titles: ["全部", "待审核", "待打款", "已打款", "未通过"], defaultColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x333333, alpha: 1.0), currentColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x2094f5, alpha: 1.0), lineHeight: 2, lineIsBottom: true) { [weak self](index) in
  21. if index == 0 {
  22. self!.status = 999
  23. } else if index == 1 {
  24. self!.status = 0
  25. } else if index == 2 {
  26. self!.status = 1
  27. } else if index == 3 {
  28. self!.status = 2
  29. } else if index == 4 {
  30. self!.status = 3
  31. } else {
  32. self!.status = 999
  33. }
  34. self!.currentPage = 1
  35. self!.tableView.mj_header?.beginRefreshing()
  36. }
  37. self.viewMenu.addSubview(segment)
  38. tableView.register(UINib(nibName: "TiXianRecordListTableViewCell", bundle: nil), forCellReuseIdentifier: "TiXianRecordListTableViewCell")
  39. tableView.delegate = self
  40. tableView.dataSource = self
  41. tableView.separatorStyle = .none
  42. tableView.showsVerticalScrollIndicator = false
  43. tableView.estimatedRowHeight = 100
  44. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  45. self!.currentPage = 1
  46. self!.loadData()
  47. })
  48. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  49. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  50. self!.currentPage += 1
  51. self!.loadData()
  52. })
  53. tableView.mj_header?.beginRefreshing()
  54. }
  55. // MARK: =============加载数据===============
  56. func loadData() {
  57. let url = RequestURL.cashApplicationList
  58. let params = NSMutableDictionary()
  59. params.setValue(status, forKey: "status")
  60. params.setValue(machineTypeId, forKey: "machineTypeId")
  61. loadDataList(url: url, params: params, tableView: self.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 71
  79. }
  80. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  81. let cell = tableView.dequeueReusableCell(withIdentifier: "TiXianRecordListTableViewCell", for: indexPath as IndexPath) as! TiXianRecordListTableViewCell
  82. if indexPath.row >= self.arrData.count {
  83. return cell
  84. }
  85. let type = getIntValue(current: indexPath.row, key: "type")
  86. if type == 0 {
  87. cell.lblTitle.text = "提现"
  88. } else {
  89. cell.lblTitle.text = "提现(发票)"
  90. }
  91. cell.lblMoney.text = "-\(getDoubleValue(current: indexPath.row, key: "amount_money", defaultValue: 0.00))"
  92. cell.lblDate.text = getString(current: indexPath.row, key: "createtime")
  93. let status = getIntValue(current: indexPath.row, key: "status")
  94. ///0:待审核 1待打款 2已打款 3拒绝
  95. if status == 0 {
  96. cell.dzMoneyLable.isHidden = true
  97. cell.lblState.text = "待审核"
  98. cell.lblState.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x999999, alpha: 1.0)
  99. } else if status == 1 {
  100. cell.dzMoneyLable.isHidden = true
  101. cell.lblState.text = "待打款"
  102. cell.lblState.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xfc9005, alpha: 1.0)
  103. } else if status == 2 {
  104. cell.dzMoneyLable.isHidden = false
  105. cell.dzMoneyLable.text = "(到账¥\(getDoubleValue(current: indexPath.row, key: "realy_amount", defaultValue: 0.00)))"
  106. cell.lblState.text = "已打款"
  107. cell.lblState.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x16b006, alpha: 1.0)
  108. } else if status == 3 {
  109. cell.dzMoneyLable.isHidden = true
  110. cell.lblState.text = "未通过"
  111. cell.lblState.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xff0000, alpha: 1.0)
  112. }
  113. //cell.lblTitle.text = getString(indexPath.row, key: "Name")
  114. return cell
  115. }
  116. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  117. if indexPath.row >= arrData.count {
  118. return
  119. }
  120. let vc = TiXianDetailViewController()
  121. vc.id = getString(current: indexPath.row, key: "id")
  122. vc.dicData.setDic(dic: arrData[indexPath.row] as! NSDictionary)
  123. toViewController(viewController: vc)
  124. }
  125. override func handleBack() {
  126. if backType == 0 {
  127. super.handleBack()
  128. } else {
  129. if !CommonUntils.reBackView(controller: self, aclass: MyWalletViewController.classForCoder()) {
  130. self.navigationController?.popToRootViewController(animated: true)
  131. }
  132. }
  133. }
  134. override func viewWillAppear(_ animated: Bool) {
  135. super.viewWillAppear(animated)
  136. appDelegate.setNavigationBarHidden(isHidden: false)
  137. }
  138. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  139. super.init(nibName: "TiXianRecordListViewController", bundle: nil)
  140. }
  141. required init?(coder aDecoder: NSCoder) {
  142. fatalError("init(coder:) has not been implemented")
  143. }
  144. }