AllocatedListVC.swift 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. //
  2. // AllocatedListVC.swift
  3. // xingchuangke
  4. //
  5. // Created by apple on 2021/5/14.
  6. // Copyright © 2021 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class AllocatedListVC: 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.newwalletList
  61. let params = NSMutableDictionary()
  62. params.setValue(self.machineTypeId, forKey: "machineTypeId")
  63. params.setValue(profitType, forKey: "type")
  64. params.setValue("0", forKey: "status")
  65. loadDataList(url: url, params: params, tableView: tableView, tag: 1001)
  66. }
  67. override func returnData(tag: Int) {
  68. if tag == 1001 {
  69. tableView.reloadData()
  70. }
  71. }
  72. override func returnError(tag: Int, type: String) {
  73. }
  74. // MARK: - delegate
  75. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  76. return arrData.count
  77. }
  78. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  79. return 60
  80. }
  81. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  82. let cell = tableView.dequeueReusableCell(withIdentifier: "BillFlowCell", for: indexPath as IndexPath) as! BillFlowCell
  83. cell.selectionStyle = .none
  84. cell.titleLabel.text = getString(current: indexPath.row, key: "name")
  85. cell.timeLabel.text = getString(current: indexPath.row, key: "createtime")
  86. let value: Double = getDoubleValue(current: indexPath.row, key: "wallet_amount", defaultValue: 0.0)
  87. if value >= 0 {
  88. cell.earnLabel.text = "+\(getDoubleValue(current: indexPath.row, key: "wallet_amount", defaultValue: 0.0))"
  89. } else {
  90. cell.earnLabel.text = "\(getDoubleValue(current: indexPath.row, key: "wallet_amount", defaultValue: 0.0))"
  91. }
  92. cell.totalLabel.text = "交易总额:\(getDoubleValue(current: indexPath.row, key: "amount_total", defaultValue: 0.0))"
  93. return cell
  94. }
  95. /*
  96. // MARK: - Navigation
  97. // In a storyboard-based application, you will often want to do a little preparation before navigation
  98. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  99. // Get the new view controller using segue.destination.
  100. // Pass the selected object to the new view controller.
  101. }
  102. */
  103. }