ActiveListViewController.swift 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. //
  2. // ActiveListViewController.swift
  3. // tttest
  4. //
  5. // Created by uen on 2020/8/12.
  6. // Copyright © 2020 xiaofei. All rights reserved.
  7. //
  8. import UIKit
  9. class ActiveListViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  10. let tableView: UITableView = {
  11. let tab = UITableView.init(frame: CGRect.zero, style: .plain)
  12. tab.tableFooterView = UIView.init()
  13. return tab
  14. }()
  15. var selectedActivityId: String = ""
  16. override func viewWillAppear(_ animated: Bool) {
  17. super.viewWillAppear(animated)
  18. appDelegate.setNavigationBarHidden(isHidden: false)
  19. self.title = "活动中心"
  20. }
  21. override func viewDidLoad() {
  22. super.viewDidLoad()
  23. self.view.backgroundColor = UIColor.white
  24. initNavLeftBackButton()
  25. tableView.frame = self.view.bounds
  26. tableView.delegate = self
  27. tableView.dataSource = self
  28. tableView.separatorStyle = .none
  29. tableView.register(UINib(nibName: "ActiveListCell", bundle: nil), forCellReuseIdentifier: "ActiveListCell")
  30. self.view.addSubview(tableView)
  31. loadData()
  32. }
  33. // MARK: request
  34. func loadData() {
  35. let url = RequestURL.activityAuth
  36. let params = NSMutableDictionary()
  37. params.setValue(CommonValue.getUserId(), forKey: "userId")
  38. params.setValue("0002", forKey: "code")
  39. loadDataListPost(url: url, params: params, tag: 1001)
  40. }
  41. func loadDataForEdit() {
  42. let url = RequestURL.activityEdit
  43. let params = NSMutableDictionary()
  44. params.setValue(modelJson(), forKey: "model")
  45. params.setValue("0004", forKey: "code")
  46. loadDataInfoPost(url: url, params: params, tag: 1002)
  47. }
  48. func modelJson() -> String {
  49. let tempDic = NSMutableDictionary()
  50. tempDic.setValue(selectedActivityId, forKey: "activityId")
  51. tempDic.setValue(CommonValue.getUserId(), forKey: "userId")
  52. let data = (try? JSONSerialization.data(withJSONObject: tempDic, options: .prettyPrinted))!
  53. let strJson = NSString(data: data, encoding: String.Encoding.utf8.rawValue)
  54. return strJson! as String
  55. }
  56. override func returnData(tag: Int) {
  57. if tag == 1002 {
  58. let vc = ActiveDetailViewController()
  59. vc.activityId = selectedActivityId
  60. vc.userId = CommonValue.getUserId()
  61. vc.isActive = true
  62. self.navigationController?.pushViewController(vc, animated: true)
  63. return
  64. }
  65. tableView.reloadData()
  66. }
  67. override func returnError(tag: Int, type: String) {
  68. }
  69. // MARK: delegate
  70. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  71. return arrData.count
  72. }
  73. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  74. let cell = tableView.dequeueReusableCell(withIdentifier: "ActiveListCell", for: indexPath as IndexPath) as! ActiveListCell
  75. cell.selectionStyle = .none
  76. let activDic = arrData[indexPath.row] as! NSDictionary
  77. let productPolicyDic = activDic["productPolicy"] as! NSDictionary
  78. let depositStatus = productPolicyDic["activationConditions"] as! String
  79. if depositStatus == "0" {
  80. cell.depositStatusLbl.text = "押金"
  81. cell.earnTitleLbl.text = "押金金额"
  82. } else {
  83. cell.depositStatusLbl.text = "非押金"
  84. cell.earnTitleLbl.text = "交易达标金额"
  85. }
  86. let status = getString(current: indexPath.row, key: "type")
  87. if status == "1.0" {
  88. cell.statusLbl.text = "可给直属下级进行配置"
  89. cell.bgView.backgroundColor = UIColor.init(red: 56/255.0, green: 112/255.0, blue: 242/255.0, alpha: 1.0)
  90. } else { // 162 211 230
  91. cell.statusLbl.text = "不可更改"
  92. cell.bgView.backgroundColor = UIColor.init(red: 0.0, green: 178/255.0, blue: 191/255.0, alpha: 1.0)
  93. }
  94. cell.rewardTitleLbl.text = "激活奖励"
  95. cell.brandLbl.text = getString(current: indexPath.row, key: "activityName")
  96. let startTime = getString(current: indexPath.row, key: "startTime")
  97. let endTime = getString(current: indexPath.row, key: "endTime")
  98. let startDataArr = startTime.components(separatedBy: " ")
  99. let endDataArr = endTime.components(separatedBy: " ")
  100. cell.timeLbl.text = "活动时间:\(startDataArr[0]) 至 \(endDataArr[0])"
  101. cell.earnLbl.text = productPolicyDic["depositAmount"] as? String
  102. cell.rewardLbl.text = productPolicyDic["activationAmountReward"] as? String
  103. return cell
  104. }
  105. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  106. let activDic = arrData[indexPath.row] as! NSDictionary
  107. selectedActivityId = activDic["activityId"] as! String
  108. loadDataForEdit()
  109. }
  110. /*
  111. // MARK: - Navigation
  112. // In a storyboard-based application, you will often want to do a little preparation before navigation
  113. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  114. // Get the new view controller using segue.destination.
  115. // Pass the selected object to the new view controller.
  116. }
  117. */
  118. }