UnderLineTrainRecordViewController.swift 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. //
  2. // UnderLineTrainViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/5/13.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class UnderLineTrainRecordViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. @IBOutlet weak var tableView: UITableView!
  11. @IBOutlet weak var viewMenu: UIView!
  12. var currentType = 0
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. self.title = "我的培训"
  16. initNavLeftBackButton()
  17. tableView.register(UINib(nibName: "UnderLineTrainTableViewCell", bundle: nil), forCellReuseIdentifier: "UnderLineTrainTableViewCell")
  18. tableView.delegate = self
  19. tableView.dataSource = self
  20. tableView.separatorStyle = .none
  21. tableView.showsVerticalScrollIndicator = false
  22. tableView.estimatedRowHeight = 100
  23. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  24. self!.currentPage = 1
  25. self!.loadData()
  26. })
  27. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  28. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  29. self!.currentPage += 1
  30. self!.loadData()
  31. })
  32. }
  33. let arrType = NSMutableArray()
  34. func loadType() {
  35. if arrType.count > 0 {
  36. returnData(tag: 1001)
  37. return
  38. }
  39. let url = RequestURL.studyTypeList
  40. let params = NSMutableDictionary()
  41. params.setValue(1, forKey: "type")
  42. loadDataList(url: url, params: params, tag: 1001, array: arrType)
  43. }
  44. func loadData() {
  45. let url = RequestURL.nearStudyList
  46. let params = NSMutableDictionary()
  47. params.setValue("1", forKey: "type")
  48. loadDataList(url: url, params: params, tableView: tableView, tag: 1002)
  49. }
  50. override func returnData(tag: Int) {
  51. if tag == 1001 {
  52. if arrType.count < 1 {
  53. SVProgressHUD.showError(withStatus: "学习分类获取出错,请联系客服!")
  54. return
  55. }
  56. var arrTitle = [String]()
  57. for dic in self.arrType {
  58. arrTitle.append((dic as! NSDictionary).getString(key: "name"))
  59. }
  60. let segment = Virgil_SegmentView(frame: CGRect(x: 0, y: 3, width: ScreenWidth, height: 45), titles: arrTitle, defaultColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x333333, alpha: 1.0), currentColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x2094f5, alpha: 1.0), lineHeight: 2, lineIsBottom: true) { [weak self](index) in
  61. self!.currentType = index
  62. self!.tableView.mj_header?.beginRefreshing()
  63. }
  64. self.viewMenu.removeAll()
  65. self.viewMenu.addSubview(segment)
  66. self.tableView.mj_header?.beginRefreshing()
  67. } else if tag == 1002 {
  68. tableView.reloadData()
  69. }
  70. }
  71. override func returnError(tag: Int, type: String) {
  72. }
  73. // MARK: TABLEVLEW 实现
  74. // MARK: TABLEVLEW 实现
  75. func numberOfSections(in tableView: UITableView) -> Int {
  76. return 1
  77. }
  78. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  79. return self.arrData.count
  80. }
  81. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  82. let cell = tableView.dequeueReusableCell(withIdentifier: "UnderLineTrainTableViewCell", for: indexPath as IndexPath) as! UnderLineTrainTableViewCell
  83. cell.initCell(dic: self.arrData[indexPath.row] as! NSDictionary)
  84. return cell
  85. }
  86. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  87. if indexPath.row >= arrData.count {
  88. return
  89. }
  90. let vc = CommonWebViewViewController()
  91. vc.strTitle = "培训详情"
  92. vc.url = getString(current: indexPath.row, key: "webUrl")
  93. toViewController(viewController: vc)
  94. }
  95. override func viewWillAppear(_ animated: Bool) {
  96. super.viewWillAppear(animated)
  97. //loadType();
  98. tableView.mj_header?.beginRefreshing()
  99. }
  100. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  101. super.init(nibName: "UnderLineTrainRecordViewController", bundle: nil)
  102. }
  103. required init?(coder aDecoder: NSCoder) {
  104. fatalError("init(coder:) has not been implemented")
  105. }
  106. }