NewlyAddedDelegateViewController.swift 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. //
  2. // NewlyAddedDelegateViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/8/29.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class NewlyAddedDelegateViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  10. var timeStr: String = ""
  11. var dictData: NSDictionary = [:]
  12. var userId: String = ""
  13. var startTime: String = ""
  14. var endTime: String = ""
  15. var isTeam: String = ""
  16. var likeStr: String = ""
  17. var dataList: NSArray = []
  18. @IBOutlet weak var imgBgView: UIImageView!
  19. @IBOutlet weak var searchView: UIView!
  20. @IBOutlet weak var searchTextField: UITextField!
  21. @IBOutlet weak var timeLabel: UILabel!
  22. @IBOutlet weak var tableView: UITableView!
  23. override func viewWillAppear(_ animated: Bool) {
  24. super.viewWillAppear(animated)
  25. appDelegate.setNavigationBarHidden(isHidden: true)
  26. }
  27. override func viewDidLoad() {
  28. super.viewDidLoad()
  29. self.view.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xF1F1F1, alpha: 1.0)
  30. analysisData()
  31. navInit()
  32. tableView.delegate = self
  33. tableView.dataSource = self
  34. tableView.tableFooterView = UIView.init()
  35. tableView.register(UINib(nibName: "NewlyAddedDelegateCell", bundle: nil), forCellReuseIdentifier: "NewlyAddedDelegateCell")
  36. }
  37. // 自定义导航栏
  38. func navInit() {
  39. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  40. viewNav.initView(title: "新增代理") {[weak self] (index, _) in
  41. if index == 0 {
  42. self!.handleBack()
  43. }
  44. }
  45. self.view.addSubview(viewNav)
  46. viewNav.marginTop(top: 0)
  47. searchView.marginTop(top: viewNav.bottom())
  48. imgBgView.translatesAutoresizingMaskIntoConstraints = false
  49. let h: NSLayoutConstraint = NSLayoutConstraint(item: imgBgView as Any, attribute: .height, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 0.0, constant: searchView.bottom())
  50. imgBgView.addConstraint(h)
  51. }
  52. func analysisData() {
  53. timeLabel.text = timeStr
  54. if dictData["agenssAdd"] == nil {
  55. return
  56. }
  57. let arr: NSArray = dictData["agenssAdd"] as! NSArray
  58. dataList = arr
  59. }
  60. // MARK: - request
  61. func loadDataForAchive() {
  62. let url = RequestURL.myAgentsPerformance
  63. let params = NSMutableDictionary()
  64. params.setValue(userId, forKey: "userId")
  65. params.setValue(self.startTime, forKey: "startTime")
  66. params.setValue(self.endTime, forKey: "endTime")
  67. params.setValue(isTeam, forKey: "isTeam") // 0 团队; 1 个人
  68. params.setValue(likeStr, forKey: "likeStr")
  69. loadDataInfo(url: url, params: params, tag: 2001)
  70. }
  71. // MARK: - action
  72. @IBAction func searchBtnClick(_ sender: Any) {
  73. }
  74. // MARK: - delegate
  75. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  76. return 60
  77. }
  78. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  79. return dataList.count
  80. }
  81. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  82. let cell = tableView.dequeueReusableCell(withIdentifier: "NewlyAddedDelegateCell", for: indexPath) as! NewlyAddedDelegateCell
  83. cell.selectionStyle = .none
  84. let dic: NSDictionary = dataList[indexPath.row] as! NSDictionary
  85. if dic["real_name"] == nil || dic["real_name"] is NSNull {
  86. cell.nameLabel.text = "未实名认证"
  87. } else {
  88. cell.nameLabel.text = "\(dic["real_name"] ?? "未实名认证") "
  89. }
  90. cell.phoneLabel.text = "\(dic["account"] ?? "***")(推荐码:\(dic["rec_code"] ?? ""))"
  91. cell.delegateLabel.text = "代理数:\(dic["agent_num"] ?? "0")个"
  92. cell.mercLabel.text = "商户数:\(dic["merchant_num"] ?? "0")个"
  93. return cell
  94. }
  95. /*
  96. // MARK: - Navigation
  97. // In a storyboard-based application, you will often want to do a little preparation before navigation
  98. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  99. // Get the new view controller using segue.destination.
  100. // Pass the selected object to the new view controller.
  101. }
  102. */
  103. }