WalletRecordViewController.swift 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. //
  2. // WalletRecordViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/8/15.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. @objcMembers
  10. class WalletRecordViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  11. var type: NSInteger?
  12. var machineTypeId: String = ""
  13. let tableView: UITableView = {
  14. let tab = UITableView.init(frame: UIScreen.main.bounds, style: .plain)
  15. return tab
  16. }()
  17. let dataList: Array = {
  18. return ["收益流水", "提现记录"]
  19. }()
  20. let headerView: CommonHeaderView = {
  21. let headerV = CommonHeaderView.init(frame: CGRect(x: 0, y: 0, width: UIScreen.main.bounds.width, height: 180))
  22. headerV.isCycle = false
  23. headerV.isMoney = true
  24. headerV.setupUI()
  25. headerV.dataView2.rewardControl.addTarget(self, action: #selector(rewardClick1), for: .touchUpInside)
  26. return headerV
  27. }()
  28. @objc func rewardClick1( ) {
  29. let vc = AllocatedListVC()
  30. vc.machineTypeId = machineTypeId
  31. appDelegate.navController.pushViewController(vc, animated: true)
  32. }
  33. let footer: UIView = {
  34. let w = UIScreen.main.bounds.width
  35. let view = UIView.init(frame: CGRect.init(x: 0, y: 0, width: w, height: 160))
  36. view.backgroundColor = UIColor.init(white: 245/255.0, alpha: 1.0)
  37. return view
  38. }()
  39. let withdrawBtn: UIButton = {
  40. let w = UIScreen.main.bounds.width
  41. let btn = UIButton.init(type: .custom)
  42. btn.backgroundColor = UIColor.init(red: 42/255.0, green: 146/255.0, blue: 247/255.0, alpha: 1.0)
  43. btn.frame = CGRect.init(x: 0, y: 0, width: w - 60, height: 44)
  44. btn.setTitle("提现", for: .normal)
  45. btn.layer.cornerRadius = 22
  46. return btn
  47. }()
  48. override func viewDidLoad() {
  49. super.viewDidLoad()
  50. initNavLeftBackButton()
  51. footer.addSubview(withdrawBtn)
  52. withdrawBtn.center = footer.center
  53. withdrawBtn.addTarget(self, action: #selector(withdrawBtnBlock), for: .touchUpInside)
  54. tableView.delegate = self
  55. tableView.dataSource = self
  56. tableView.backgroundColor = UIColor.init(white: 245/255.0, alpha: 1.0)
  57. tableView.tableHeaderView = headerView
  58. tableView.tableFooterView = footer
  59. self.view.addSubview(tableView)
  60. loadData()
  61. }
  62. @objc func withdrawBtnBlock() {
  63. let vc = TiXianViewController()
  64. if dicData["XUserWalletHfHkHkqg"] is NSNull {
  65. vc.withdraw = "0"
  66. } else {
  67. let dic: NSDictionary = dicData["XUserWalletHfHkHkqg"] as! NSDictionary
  68. NSLog("\(dic)")
  69. var all = 0.0
  70. all = dic["profit_balance"] as! Double
  71. vc.withdraw = "\(String(format: "%.2f", all))"
  72. }
  73. vc.machineTypeId = machineTypeId
  74. self.navigationController?.pushViewController(vc, animated: true)
  75. }
  76. // MARK: - request
  77. func loadData() {
  78. let url = RequestURL.findwalletListByMachineTypeId
  79. let params = NSMutableDictionary()
  80. params.setValue(CommonValue.getUserId(), forKey: "userId")
  81. params.setValue(machineTypeId, forKey: "machineTypeId")
  82. loadDataInfo(url: url, params: params, tag: 1001)
  83. }
  84. override func returnData(tag: Int) {
  85. if dicData["XUserWalletHfHkHkqg"] is NSNull {
  86. headerView.dataView2.earnLbl.text = "¥0.0"
  87. headerView.dataView2.rewardLbl.text = "¥0.0"
  88. headerView.dataView2.dhMoney.text = "¥0.0"
  89. return
  90. }
  91. let dic: NSDictionary = dicData["XUserWalletHfHkHkqg"] as! NSDictionary
  92. var all = 0.0
  93. all = dic["profit_balance"] as! Double
  94. var all1 = 0.0
  95. all1 = dicData["UnallocatedBalance"] as! Double
  96. let all2 = all + all1
  97. headerView.dataView2.earnLbl.text = "¥\(String(format: "%.2f", all2))"
  98. headerView.dataView2.rewardLbl.text = "¥\(String(format: "%.2f", all))"
  99. headerView.dataView2.dhMoney.text = "¥\(String(format: "%.2f", all1))"
  100. }
  101. override func returnError(tag: Int, type: String) {
  102. }
  103. // MARK: - delegate
  104. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  105. return 2
  106. }
  107. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  108. return 60
  109. }
  110. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  111. let cellId = "businessCellId"
  112. var cell = tableView.dequeueReusableCell(withIdentifier: cellId)
  113. if cell == nil {
  114. cell = UITableViewCell.init(style: .default, reuseIdentifier: cellId)
  115. let imgV = UIImageView.init(image: UIImage.init(named: "ion_arrow_right_gray"))
  116. cell?.accessoryView = imgV
  117. cell?.selectionStyle = .none
  118. cell?.textLabel?.font = UIFont.systemFont(ofSize: 15)
  119. }
  120. cell?.textLabel?.text = dataList[indexPath.row]
  121. return cell!
  122. }
  123. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  124. let tit = dataList[indexPath.row]
  125. if tit == "提现记录" {
  126. let vc = TiXianRecordListViewController()
  127. vc.machineTypeId = machineTypeId
  128. self.navigationController?.pushViewController(vc, animated: true)
  129. } else if tit == "收益流水" {
  130. let vc = BillFlowViewController()
  131. vc.machineTypeId = machineTypeId
  132. self.navigationController?.pushViewController(vc, animated: true)
  133. }
  134. }
  135. /*
  136. // MARK: - Navigation
  137. // In a storyboard-based application, you will often want to do a little preparation before navigation
  138. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  139. // Get the new view controller using segue.destination.
  140. // Pass the selected object to the new view controller.
  141. }
  142. */
  143. }