TotalTradeViewController.swift 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. //
  2. // TotalTradeViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/8/29.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class TotalTradeViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. @IBOutlet weak var timeLabel: UILabel!
  11. @IBOutlet weak var totalLabel: UILabel!
  12. @IBOutlet weak var tableView: UITableView!
  13. var userId: String!
  14. var timeStr: String = ""
  15. var isTeam: String = "0"
  16. var dictData: NSDictionary = [:]
  17. var endTime: String = ""
  18. var startTime: String = ""
  19. var dataList: NSArray = []
  20. override func viewDidLoad() {
  21. super.viewDidLoad()
  22. self.title = "交易总额"
  23. initNavLeftBackButton()
  24. analysisData()
  25. tableView.delegate = self
  26. tableView.dataSource = self
  27. tableView.tableFooterView = UIView.init()
  28. }
  29. func analysisData() {
  30. let dic: NSDictionary = dictData
  31. let arr: NSArray = dic["XMachineTypeListBy"] as! NSArray
  32. dataList = arr
  33. totalLabel.text = "\(dictData["transactionTotal"] ?? "0")"
  34. timeLabel.text = timeStr
  35. }
  36. // MARK: - delegate
  37. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  38. return dataList.count
  39. }
  40. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  41. return 60
  42. }
  43. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  44. var cell = tableView.dequeueReusableCell(withIdentifier: "totalTradeCell")
  45. if cell == nil {
  46. cell = UITableViewCell.init(style: .value1, reuseIdentifier: "totalTradeCell")
  47. cell?.textLabel?.font = UIFont.systemFont(ofSize: 15)
  48. cell?.accessoryType = .disclosureIndicator
  49. cell?.detailTextLabel?.textColor = UIColor.black
  50. cell?.detailTextLabel?.font = UIFont.systemFont(ofSize: 14)
  51. cell?.selectionStyle = .none
  52. }
  53. let dic: NSDictionary = dataList[indexPath.row] as! NSDictionary
  54. cell?.textLabel?.text = dic["name"] as? String
  55. cell?.detailTextLabel?.text = "\(dic["total"] ?? "0")元"
  56. return cell!
  57. }
  58. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  59. let vc = TotalDetailViewController()
  60. vc.userId = userId
  61. vc.isTeam = isTeam
  62. vc.timeStr = timeStr
  63. vc.startTime = self.startTime
  64. vc.endTime = self.endTime
  65. let dic: NSDictionary = dataList[indexPath.row] as! NSDictionary
  66. vc.type = brandList.firstIndex(of: dic["name"] as! String) ?? 0
  67. vc.machineType = (dic["id"] as! String)
  68. vc.name = (dic["name"] as! String)
  69. self.navigationController?.pushViewController(vc, animated: true)
  70. }
  71. /*
  72. // MARK: - Navigation
  73. // In a storyboard-based application, you will often want to do a little preparation before navigation
  74. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  75. // Get the new view controller using segue.destination.
  76. // Pass the selected object to the new view controller.
  77. }
  78. */
  79. }