BillFlowViewController.swift 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. //
  2. // BillFlowViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/8/31.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class BillFlowViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  10. let tableView: UITableView = {
  11. let tableV = UITableView.init(frame: UIScreen.main.bounds, style: .plain)
  12. tableV.tableFooterView = UIView.init()
  13. return tableV
  14. }()
  15. let contentV = CommonViewUntils.getViewForXIB(xibName: "BillFlowMenuContent") as! BillFlowMenuContent
  16. var menuView: XF_RightMenu = {
  17. let menuView = XF_RightMenu.init(frame: UIScreen.main.bounds)
  18. return menuView
  19. }()
  20. // 品牌id
  21. var machineTypeId: String?
  22. // 收益类型
  23. var profitType: String = "999"
  24. override func viewDidLoad() {
  25. super.viewDidLoad()
  26. self.title = "收益流水"
  27. initNavLeftBackButton()
  28. initNavRightButtonForTitle(title: "筛选", color: UIColor.white)
  29. tableView.delegate = self
  30. tableView.dataSource = self
  31. tableView.frame = self.view.bounds
  32. tableView.separatorStyle = .none
  33. self.view.addSubview(tableView)
  34. tableView.register(UINib(nibName: "BillFlowCell", bundle: nil), forCellReuseIdentifier: "BillFlowCell")
  35. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  36. self!.currentPage = 1
  37. self!.loadData()
  38. })
  39. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  40. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  41. self!.currentPage += 1
  42. self!.loadData()
  43. })
  44. self.view.addSubview(menuView)
  45. menuView.contentView = contentV
  46. contentV.billFlowBlock = { (str) in
  47. self.profitType = str
  48. self.menuView.hiddenView()
  49. self.currentPage = 1
  50. self.loadData()
  51. }
  52. loadData()
  53. }
  54. // MARK: - action
  55. override func btnRightMenuClick() {
  56. self.menuView.showView()
  57. }
  58. // MARK: - request
  59. func loadData() {
  60. let url = RequestURL.walletList
  61. let params = NSMutableDictionary()
  62. params.setValue(self.machineTypeId, forKey: "machineTypeId")
  63. params.setValue(profitType, forKey: "type")
  64. loadDataList(url: url, params: params, tableView: tableView, tag: 1001)
  65. }
  66. override func returnData(tag: Int) {
  67. if tag == 1001 {
  68. tableView.reloadData()
  69. }
  70. }
  71. override func returnError(tag: Int, type: String) {
  72. }
  73. // MARK: - delegate
  74. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  75. return arrData.count
  76. }
  77. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  78. return 60
  79. }
  80. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  81. let cell = tableView.dequeueReusableCell(withIdentifier: "BillFlowCell", for: indexPath as IndexPath) as! BillFlowCell
  82. cell.selectionStyle = .none
  83. cell.titleLabel.text = getString(current: indexPath.row, key: "name")
  84. cell.timeLabel.text = getString(current: indexPath.row, key: "createtime")
  85. let value: Double = getDoubleValue(current: indexPath.row, key: "wallet_amount", defaultValue: 0.0)
  86. if value >= 0 {
  87. cell.earnLabel.text = "+\(getDoubleValue(current: indexPath.row, key: "wallet_amount", defaultValue: 0.0))"
  88. } else {
  89. cell.earnLabel.text = "\(getDoubleValue(current: indexPath.row, key: "wallet_amount", defaultValue: 0.0))"
  90. }
  91. cell.totalLabel.text = "交易总额:\(getDoubleValue(current: indexPath.row, key: "amount_total", defaultValue: 0.0))"
  92. return cell
  93. }
  94. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  95. let alert = UIAlertController.init(title: "详细信息", message: getString(current: indexPath.row, key: "name"), preferredStyle: .alert)
  96. let confirmaction = UIAlertAction.init(title: "确定", style: .default, handler: nil)
  97. alert.addAction(confirmaction)
  98. self.present(alert, animated: true, completion: nil)
  99. }
  100. /*
  101. // MARK: - Navigation
  102. // In a storyboard-based application, you will often want to do a little preparation before navigation
  103. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  104. // Get the new view controller using segue.destination.
  105. // Pass the selected object to the new view controller.
  106. }
  107. */
  108. }