MachineDetailViewController.swift 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. //
  2. // MachineDetailViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/5/16.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class MachineDetailViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. @IBOutlet weak var tableView: UITableView!
  11. var id = ""
  12. let arrTitle = ["机具品牌", "SN码", "所属商户", "商户编号", "绑定时间", "商户手机号", "激活状态"]
  13. var arrContent = ["", "", "", "", "", "", ""]
  14. override func viewDidLoad() {
  15. super.viewDidLoad()
  16. initNavLeftBackButton()
  17. self.title = "终端信息"
  18. tableView.register(UINib(nibName: "MachineDetailTableViewCell", bundle: nil), forCellReuseIdentifier: "MachineDetailTableViewCell")
  19. tableView.delegate = self
  20. tableView.dataSource = self
  21. tableView.separatorStyle = .none
  22. tableView.showsVerticalScrollIndicator = false
  23. tableView.estimatedRowHeight = 100
  24. loadData()
  25. }
  26. // MARK: =============加载数据===============
  27. func loadData() {
  28. let url = RequestURL.machineDetail
  29. let params = NSMutableDictionary()
  30. params.setValue(id, forKey: "id")
  31. loadDataInfo(url: url, params: params, tag: 1001)
  32. }
  33. override func returnData(tag: Int) {
  34. if tag == 1001 {
  35. arrContent[0] = getString(key: "machineTypeCN")
  36. arrContent[1] = getString(key: "sn_code")
  37. arrContent[2] = getString(key: "bind_merchant_name")
  38. arrContent[3] = getString(key: "mercNo")
  39. arrContent[4] = getString(key: "bind_time")
  40. arrContent[5] = CommonValue.formatPhone(phone: getString(key: "busPhone"))
  41. let state = getIntValue(key: "status")
  42. if state == 0 {
  43. arrContent[6] = "未绑定"
  44. } else if state == 1 {
  45. arrContent[6] = "已绑定"
  46. } else if state == 2 {
  47. arrContent[6] = "已激活"
  48. }
  49. tableView.reloadData()
  50. }
  51. }
  52. override func returnError(tag: Int, type: String) {
  53. }
  54. // MARK: TABLEVLEW 实现
  55. func numberOfSections(in tableView: UITableView) -> Int {
  56. return 1
  57. }
  58. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  59. return self.arrTitle.count
  60. }
  61. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  62. return 54
  63. }
  64. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  65. let cell = tableView.dequeueReusableCell(withIdentifier: "MachineDetailTableViewCell", for: indexPath as IndexPath) as! MachineDetailTableViewCell
  66. cell.lblTitle.text = arrTitle[indexPath.row]
  67. cell.lblContent.text = arrContent[indexPath.row]
  68. return cell
  69. }
  70. override func viewWillAppear(_ animated: Bool) {
  71. super.viewWillAppear(animated)
  72. }
  73. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  74. super.init(nibName: "MachineDetailViewController", bundle: nil)
  75. }
  76. required init?(coder aDecoder: NSCoder) {
  77. fatalError("init(coder:) has not been implemented")
  78. }
  79. }