MachineLogListViewController.swift 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. //
  2. // MachineLogListViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by 刘惠萍 on 2023/5/21.
  6. //
  7. import UIKit
  8. class MachineLogListViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  9. let tableView: UITableView = {
  10. let tab = UITableView.init(frame: CGRect.zero, style: .plain)
  11. tab.tableFooterView = UIView.init()
  12. return tab
  13. }()
  14. var selectedActivityId: String = ""
  15. override func viewWillAppear(_ animated: Bool) {
  16. super.viewWillAppear(animated)
  17. appDelegate.setNavigationBarHidden(isHidden: false)
  18. self.title = "调拨日志"
  19. }
  20. override func viewDidLoad() {
  21. super.viewDidLoad()
  22. self.view.backgroundColor = UIColor.white
  23. initNavLeftBackButton()
  24. tableView.frame = self.view.bounds
  25. tableView.delegate = self
  26. tableView.dataSource = self
  27. tableView.separatorStyle = .none
  28. tableView.register(UINib(nibName: "MachineLogListCell", bundle: nil), forCellReuseIdentifier: "MachineLogListCell")
  29. self.view.addSubview(tableView)
  30. tableView.tableFooterView = UIView.init()
  31. tableView.showsVerticalScrollIndicator = false
  32. tableView.estimatedRowHeight = 100
  33. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  34. self!.currentPage = 1
  35. self!.loadData()
  36. })
  37. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  38. loadData()
  39. }
  40. // MARK: request
  41. func loadData() {
  42. let url = RequestURL.machineAllocationLog
  43. let params = NSMutableDictionary()
  44. params.setValue(CommonValue.getUserId(), forKey: "userId")
  45. // params.setValue("0002", forKey: "code")
  46. loadDataList(url: url, params: params, tableView: self.tableView, tag: 1001)
  47. }
  48. override func returnData(tag: Int) {
  49. tableView.reloadData()
  50. }
  51. override func returnError(tag: Int, type: String) {
  52. }
  53. func numberOfSections(in tableView: UITableView) -> Int {
  54. return 1
  55. }
  56. // MARK: delegate
  57. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  58. return self.arrData.count
  59. }
  60. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  61. return 174
  62. }
  63. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  64. let cell = tableView.dequeueReusableCell(withIdentifier: "MachineLogListCell", for: indexPath as IndexPath) as! MachineLogListCell
  65. cell.selectionStyle = .none
  66. let activDic = arrData[indexPath.row] as! NSDictionary
  67. cell.snCodeLbl.text = (activDic["sn_code"] as! String)
  68. cell.timeLbl.text = getString(current: indexPath.row, key: "allocation_time")
  69. cell.earnLbl.text = getString(current: indexPath.row, key: "real_name")
  70. cell.rewardLbl.text = getString(current: indexPath.row, key: "created_by")
  71. cell.oldLbl.text = getString(current: indexPath.row, key: "old_real_name")
  72. return cell
  73. }
  74. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  75. }
  76. /*
  77. // MARK: - Navigation
  78. // In a storyboard-based application, you will often want to do a little preparation before navigation
  79. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  80. // Get the new view controller using segue.destination.
  81. // Pass the selected object to the new view controller.
  82. }
  83. */
  84. }