WalletMainViewController.swift 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. //
  2. // WalletMainViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/8/11.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class WalletMainViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  10. @IBOutlet weak var topView: UIView!
  11. @IBOutlet weak var tableView: UITableView!
  12. var machineTypeArr: NSArray = []
  13. let headerView: CommonHeaderView = {
  14. let headerV = CommonHeaderView.init(frame: CGRect(x: 0, y: 0, width: UIScreen.main.bounds.width, height: 180))
  15. headerV.isCycle = false
  16. headerV.isMoney = true
  17. headerV.setupUI()
  18. return headerV
  19. }()
  20. let footer: UIView = {
  21. let w = UIScreen.main.bounds.width
  22. let view = UIView.init(frame: CGRect.init(x: 0, y: 0, width: w, height: 160))
  23. view.backgroundColor = UIColor.init(white: 245/255.0, alpha: 1.0)
  24. return view
  25. }()
  26. let withdrawBtn: UIButton = {
  27. let w = UIScreen.main.bounds.width
  28. let btn = UIButton.init(type: .custom)
  29. btn.backgroundColor = UIColor.init(red: 42/255.0, green: 146/255.0, blue: 247/255.0, alpha: 1.0)
  30. btn.frame = CGRect.init(x: 0, y: 0, width: w - 60, height: 44)
  31. btn.setTitle("提现", for: .normal)
  32. btn.layer.cornerRadius = 22
  33. return btn
  34. }()
  35. //10 10 10 10 20 40 80 80
  36. override func viewWillAppear(_ animated: Bool) {
  37. super.viewWillAppear(animated)
  38. // appDelegate.setNavigationBarHidden(isHidden: false)
  39. appDelegate.setNavigationBarHidden(isHidden: true)
  40. self.tabBarController?.title = "我的钱包"
  41. loadData()
  42. }
  43. override func viewDidLoad() {
  44. super.viewDidLoad()
  45. navInit()
  46. footer.addSubview(withdrawBtn)
  47. withdrawBtn.center = footer.center
  48. withdrawBtn.addTarget(self, action: #selector(withdrawBtnBlock), for: .touchUpInside)
  49. tableView.frame = self.view.bounds
  50. tableView.tableFooterView = UIView.init()
  51. tableView.delegate = self
  52. tableView.dataSource = self
  53. self.view.addSubview(tableView)
  54. tableView.tableHeaderView = headerView
  55. tableView.tableFooterView = footer
  56. }
  57. // 自定义导航栏
  58. func navInit() {
  59. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  60. viewNav.initView(title: "我的钱包") {[weak self] (index, _) in
  61. if index == 1 {
  62. // self!.handleBack();
  63. // 提现记录
  64. let vc = TiXianRecordListViewController()
  65. self?.navigationController?.pushViewController(vc, animated: true)
  66. }
  67. }
  68. self.view.addSubview(viewNav)
  69. viewNav.btnLeft.isHidden = true
  70. viewNav.initRightBtn(title: "提现记录")
  71. topView.translatesAutoresizingMaskIntoConstraints = false
  72. let h: NSLayoutConstraint = NSLayoutConstraint(item: topView as Any, attribute: .height, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 0.0, constant: viewNav.bottom())
  73. topView.addConstraint(h)
  74. }
  75. // MARK: - action
  76. @objc func withdrawBtnBlock() {
  77. let vc = TiXianViewController()
  78. vc.machineTypeId = ""
  79. var all = 0.0
  80. all = getDoubleValue(key: "profitBalance")
  81. vc.withdraw = "\(String(format: "%.2f", all))"
  82. self.navigationController?.pushViewController(vc, animated: true)
  83. }
  84. override func btnRightMenuClick() {
  85. let vc = TiXianRecordListViewController()
  86. vc.machineTypeId = ""
  87. self.navigationController?.pushViewController(vc, animated: true)
  88. }
  89. // MARK: - request
  90. func loadData() {
  91. let url = RequestURL.findUserById
  92. let params = NSMutableDictionary()
  93. params.setValue(CommonValue.getUserId(), forKey: "userId")
  94. loadDataInfo(url: url, params: params, tag: 1001)
  95. let url1 = RequestURL.activityAuth
  96. let params1 = NSMutableDictionary()
  97. params1.setValue(CommonValue.getUserId(), forKey: "userId")
  98. params1.setValue("0001", forKey: "code")
  99. loadDataListPost(url: url1, params: params1, tag: 1002)
  100. }
  101. override func returnData(tag: Int) {
  102. if tag == 1001 {
  103. var all = 0.0
  104. all = getDoubleValue(key: "profitBalance")
  105. var all1 = 0.0
  106. all1 = getDoubleValue(key: "UnallocatedBalance")
  107. let all2 = all + all1
  108. headerView.dataView2.earnLbl.text = "¥\(String(format: "%.2f", all2))"
  109. headerView.dataView2.rewardLbl.text = "¥\(String(format: "%.2f", all))"
  110. headerView.dataView2.dhMoney.text = "¥\(String(format: "%.2f", all1))"
  111. }
  112. if tag == 1002 {
  113. machineTypeArr = arrData
  114. }
  115. tableView.reloadData()
  116. }
  117. override func returnError(tag: Int, type: String) {
  118. }
  119. // MARK: - tableviewdelegate
  120. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  121. return machineTypeArr.count
  122. }
  123. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  124. return 60
  125. }
  126. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  127. let cellId = "brandCellId"
  128. var cell = tableView.dequeueReusableCell(withIdentifier: cellId)
  129. if cell == nil {
  130. cell = UITableViewCell.init(style: .default, reuseIdentifier: cellId)
  131. let imgV = UIImageView.init(image: UIImage.init(named: "ion_arrow_right_gray"))
  132. cell?.accessoryView = imgV
  133. cell?.selectionStyle = .none
  134. cell?.textLabel?.font = UIFont.systemFont(ofSize: 15)
  135. }
  136. if machineTypeArr.count != 0 {
  137. let machineDic: NSDictionary = machineTypeArr[indexPath.row] as! NSDictionary
  138. cell?.textLabel?.text = machineDic["machineTypeName"] as? String
  139. }
  140. return cell!
  141. }
  142. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  143. if machineTypeArr.count != 0 {
  144. let machineDic: NSDictionary = machineTypeArr[indexPath.row] as! NSDictionary
  145. let vc = WalletRecordViewController()
  146. vc.type = indexPath.row
  147. vc.machineTypeId = (machineDic["machineTypeId"] as! String)
  148. vc.title = machineDic["machineTypeName"] as? String
  149. appDelegate.navController.pushViewController(vc, animated: true)
  150. }
  151. }
  152. /*
  153. // MARK: - Navigation
  154. // In a storyboard-based application, you will often want to do a little preparation before navigation
  155. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  156. // Get the new view controller using segue.destination.
  157. // Pass the selected object to the new view controller.
  158. }
  159. */
  160. }