NewlyAddedMercViewController.swift 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. //
  2. // NewlyAddedMercViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/8/29.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class NewlyAddedMercViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  10. @IBOutlet weak var timeLabel: UILabel!
  11. @IBOutlet weak var tableView: UITableView!
  12. var timeStr: String = ""
  13. var dictData: NSDictionary = [:]
  14. var dataList: NSArray = []
  15. override func viewDidLoad() {
  16. super.viewDidLoad()
  17. self.title = "新增商户"
  18. initNavLeftBackButton()
  19. self.view.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xF1F1F1, alpha: 1.0)
  20. analysisData()
  21. tableView.frame = CGRect.init(x: 0, y: timeLabel.bottom() + 5, width: self.view.bounds.width, height: self.view.bounds.height - 5 - timeLabel.bottom())
  22. tableView.delegate = self
  23. tableView.dataSource = self
  24. tableView.tableFooterView = UIView.init()
  25. tableView.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xF1F1F1, alpha: 1.0)
  26. }
  27. func analysisData() {
  28. // let dic: NSDictionary = dictData["lstr"] as! NSDictionary
  29. // let arr: NSArray = dic["XMachineTypeList"] as! NSArray
  30. let arr: NSArray = dictData["XMachineTypeListBy"] as! NSArray
  31. dataList = arr
  32. timeLabel.text = timeStr
  33. }
  34. // MARK: UITableViewDelegate/UITableViewDataSource
  35. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  36. return dataList.count
  37. }
  38. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  39. return 60
  40. }
  41. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  42. var cell = tableView.dequeueReusableCell(withIdentifier: "newlyAddedMercCell")
  43. if cell == nil {
  44. cell = UITableViewCell.init(style: .value1, reuseIdentifier: "newlyAddedMercCell")
  45. cell?.selectionStyle = .none
  46. cell?.textLabel?.font = UIFont.systemFont(ofSize: 15)
  47. cell?.detailTextLabel?.font = UIFont.systemFont(ofSize: 14)
  48. }
  49. let dic: NSDictionary = dataList[indexPath.row] as? NSDictionary ?? NSDictionary()
  50. cell?.textLabel?.text = dic["name"] as? String
  51. cell?.detailTextLabel?.text = "\(dic["total"] ?? "0")个"
  52. return cell!
  53. }
  54. /*
  55. // MARK: - Navigation
  56. // In a storyboard-based application, you will often want to do a little preparation before navigation
  57. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  58. // Get the new view controller using segue.destination.
  59. // Pass the selected object to the new view controller.
  60. }
  61. */
  62. }