TotalDetailViewController.swift 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. //
  2. // TotalDetailViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/9/1.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class TotalDetailViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  10. @IBOutlet weak var timeLabel: UILabel!
  11. @IBOutlet weak var tableView: UITableView!
  12. var userId: String!
  13. var isTeam: String?
  14. var machineType: String?
  15. var type: NSInteger = 0
  16. var timeStr: String?
  17. var endTime: String = ""
  18. var startTime: String = ""
  19. var name: String = ""
  20. var dataArr: NSArray = []
  21. override func viewDidLoad() {
  22. super.viewDidLoad()
  23. // self.title = machineType
  24. self.title = name
  25. initNavLeftBackButton()
  26. timeLabel.text = timeStr
  27. tableView.delegate = self
  28. tableView.dataSource = self
  29. tableView.tableFooterView = UIView.init()
  30. loadData()
  31. }
  32. // MARK: - request
  33. func loadData() {
  34. let url = RequestURL.findSumGroupByPayType
  35. let params = NSMutableDictionary()
  36. params.setValue(isTeam, forKey: "isTeam")
  37. // params.setValue(CommonValue.getUserId(), forKey: "userId")
  38. params.setValue(userId, forKey: "userId")
  39. params.setValue(machineType, forKey: "machineTypeId")
  40. params.setValue(self.startTime, forKey: "starTime")
  41. params.setValue(self.endTime, forKey: "endTime")
  42. loadDataInfo(url: url, params: params, tag: 1001)
  43. }
  44. override func returnData(tag: Int) {
  45. if dicData.allKeys.count == 0 {
  46. return
  47. }
  48. dataArr = (dicData["firstGroup"] as! NSArray)
  49. tableView.reloadData()
  50. }
  51. override func returnError(tag: Int, type: String) {
  52. }
  53. // MARK: - delegate
  54. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  55. return dataArr.count
  56. }
  57. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  58. return 60
  59. }
  60. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  61. var cell = tableView.dequeueReusableCell(withIdentifier: "totalDetailCell")
  62. if cell == nil {
  63. cell = UITableViewCell.init(style: .value1, reuseIdentifier: "totalDetailCell")
  64. cell?.textLabel?.font = UIFont.systemFont(ofSize: 15)
  65. cell?.detailTextLabel?.font = UIFont.systemFont(ofSize: 15)
  66. cell?.detailTextLabel?.textColor = UIColor.black
  67. }
  68. let dic = dataArr[indexPath.row] as! NSDictionary
  69. cell?.textLabel?.text = dic["payTypeName"] as? String
  70. cell?.detailTextLabel?.text = "\(getDoubleValue(key: "amt", dic: dic))元"
  71. return cell!
  72. }
  73. /*
  74. // MARK: - Navigation
  75. // In a storyboard-based application, you will often want to do a little preparation before navigation
  76. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  77. // Get the new view controller using segue.destination.
  78. // Pass the selected object to the new view controller.
  79. }
  80. */
  81. }