PolicyViewController.swift 5.4 KB

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