BusinessMainViewController.swift 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. //
  2. // BusinessMainViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/8/14.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class BusinessMainViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  10. @IBOutlet weak var tableView: UITableView!
  11. // let headerView: CommonHeaderView = {
  12. // let headerV = CommonHeaderView.init(frame: CGRect(x: 0, y: 0, width: UIScreen.main.bounds.width, height: 180))
  13. // headerV.isCycle = true
  14. // headerV.dataView.earnTitLbl.text = "本月新增商户(个)"
  15. // headerV.dataView.rewardTitLbl.text = "本日新增商户(个)"
  16. //
  17. // headerV.dataView1.earnTitLbl.text = "本月总交易(元)"
  18. // headerV.dataView1.rewardTitLbl.text = "本日总交易(元)"
  19. // return headerV
  20. // }()
  21. let dataList: Array = {
  22. return [["团队业绩", "个人业绩"]]
  23. }()
  24. override func viewWillAppear(_ animated: Bool) {
  25. super.viewWillAppear(animated)
  26. appDelegate.setNavigationBarHidden(isHidden: false)
  27. }
  28. override func viewDidLoad() {
  29. super.viewDidLoad()
  30. initNavLeftBackButton()
  31. self.title = "业绩管理"
  32. tableView.frame = self.view.bounds
  33. tableView.tableFooterView = UIView.init()
  34. tableView.delegate = self
  35. tableView.dataSource = self
  36. self.view.addSubview(tableView)
  37. // tableView.tableHeaderView = headerView
  38. loadData()
  39. }
  40. // MARK: - request
  41. func loadData() {
  42. let url = RequestURL.sumCountByMonthByDay
  43. let param = NSMutableDictionary()
  44. param.setValue(CommonValue.getUserId(), forKey: "userId")
  45. loadDataInfo(url: url, params: param, tag: 1001)
  46. }
  47. override func returnData(tag: Int) {
  48. NSLog("\(dicData)")
  49. // headerView.dataView.earnLbl.text = "\(getString(key: "momthCount"))"
  50. // headerView.dataView.rewardLbl.text = "\(getString(key: "dayCount"))"
  51. //
  52. // headerView.dataView1.earnLbl.text = "\(getString(key: "momthTransaction"))"
  53. // headerView.dataView1.rewardLbl.text = "\(getString(key: "dayTransaction"))"
  54. }
  55. override func returnError(tag: Int, type: String) {
  56. }
  57. // MARK: - tableviewdelegate
  58. func numberOfSections(in tableView: UITableView) -> Int {
  59. return dataList.count
  60. }
  61. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  62. return dataList[section].count
  63. }
  64. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  65. return 60
  66. }
  67. func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
  68. let view = UIView.init()
  69. view.backgroundColor = UIColor.init(white: 242/255.0, alpha: 1.0)
  70. return view
  71. }
  72. func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  73. if section == 0 {
  74. return 0.001
  75. }
  76. return 10
  77. }
  78. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  79. let cellId = "businessCellId"
  80. var cell = tableView.dequeueReusableCell(withIdentifier: cellId)
  81. if cell == nil {
  82. cell = UITableViewCell.init(style: .default, reuseIdentifier: cellId)
  83. let imgV = UIImageView.init(image: UIImage.init(named: "ion_arrow_right_gray"))
  84. cell?.accessoryView = imgV
  85. cell?.selectionStyle = .none
  86. cell?.textLabel?.font = UIFont.systemFont(ofSize: 15)
  87. }
  88. cell?.textLabel?.text = dataList[indexPath.section][indexPath.row]
  89. return cell!
  90. }
  91. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  92. let vc = AchiveViewController()
  93. // vc.isTeam = "\(indexPath.row)"
  94. vc.teamStr = "\(indexPath.row)"
  95. self.navigationController?.pushViewController(vc, animated: true)
  96. }
  97. /*
  98. // MARK: - Navigation
  99. // In a storyboard-based application, you will often want to do a little preparation before navigation
  100. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  101. // Get the new view controller using segue.destination.
  102. // Pass the selected object to the new view controller.
  103. }
  104. */
  105. }