BrandForWithdrawViewController.swift 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. //
  2. // BrandForWithdrawViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/9/7.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. typealias BrandForWithdrawBlock = (NSArray, Float) -> Void
  10. class BrandForWithdrawViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  11. @IBOutlet weak var tableView: UITableView!
  12. var withdrawBlock: BrandForWithdrawBlock?
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. self.title = "提现金额设置"
  16. initNavLeftBackButton()
  17. initNavRightButtonForTitle(title: "确定", color: UIColor.white)
  18. tableView.delegate = self
  19. tableView.dataSource = self
  20. tableView.tableFooterView = UIView.init()
  21. tableView.register(UINib(nibName: "BrandForWithdrawCell", bundle: nil), forCellReuseIdentifier: "BrandForWithdrawCell")
  22. loadData()
  23. }
  24. // MARK: - action
  25. override func btnRightMenuClick() {
  26. let tempArr = NSMutableArray()
  27. var totalEarn: Float = 0.0
  28. for i in 0...(arrData.count - 1) {
  29. let indexPath = IndexPath.init(row: i, section: 0)
  30. let cell: BrandForWithdrawCell = tableView.cellForRow(at: indexPath) as! BrandForWithdrawCell
  31. let earn: NSString = (cell.earnTextField.text ?? "0") as NSString
  32. let sourceDic: NSDictionary = arrData[i] as! NSDictionary
  33. let balanceDouble = getDoubleValue(key: "profitBalance", dic: sourceDic)
  34. let balance = balanceDouble > 0 ? balanceDouble : 0
  35. let dic = ["machineTypeId": sourceDic["id"] as! String, "money": cell.earnTextField.text as Any] as [String: Any]
  36. tempArr.add(dic)
  37. let earnF: Float = earn.floatValue
  38. totalEarn += earnF
  39. if earn.floatValue > Float(balance) {
  40. let show = "\(sourceDic["name"] ?? "")提现金额不得大于\(balance)"
  41. SVProgressHUD.showError(withStatus: show)
  42. return
  43. }
  44. }
  45. if withdrawBlock != nil {
  46. withdrawBlock!(tempArr, totalEarn)
  47. }
  48. self.navigationController?.popViewController(animated: true)
  49. }
  50. // MARK: - request
  51. func loadData() {
  52. let url = RequestURL.machineTypeListWhithCash
  53. let params = NSMutableDictionary()
  54. loadDataList(url: url, params: params, tag: 1001)
  55. }
  56. override func returnData(tag: Int) {
  57. tableView.reloadData()
  58. }
  59. override func returnError(tag: Int, type: String) {
  60. }
  61. // MARK: - delegate
  62. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  63. return arrData.count
  64. }
  65. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  66. return 60
  67. }
  68. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  69. let cell: BrandForWithdrawCell = tableView.dequeueReusableCell(withIdentifier: "BrandForWithdrawCell", for: indexPath) as! BrandForWithdrawCell
  70. cell.selectionStyle = .none
  71. let dic: NSDictionary = arrData[indexPath.row] as! NSDictionary
  72. cell.dataDic = dic
  73. cell.brandLabel.text = getString(key: "name", dic: dic)
  74. if getDoubleValue(key: "profitBalance", dic: dic) != 0{
  75. cell.earnTextField.placeholder = "填写金额≤\(getDoubleValue(key: "profitBalance", dic: dic))"
  76. } else {
  77. cell.earnTextField.placeholder = "填写金额≤0.0"
  78. }
  79. cell.totalBlock = {
  80. }
  81. return cell
  82. }
  83. /*
  84. // MARK: - Navigation
  85. // In a storyboard-based application, you will often want to do a little preparation before navigation
  86. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  87. // Get the new view controller using segue.destination.
  88. // Pass the selected object to the new view controller.
  89. }
  90. */
  91. }