BrandListViewController.swift 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. //
  2. // BrandListViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by 李晓飞 on 2020/8/8.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. @objcMembers
  10. class BrandListViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  11. var targetStr: String?
  12. var strTitle: String?
  13. var machineTypeArr: NSArray = []
  14. let tableView: UITableView = {
  15. let tab = UITableView.init(frame: CGRect.zero, style: .plain)
  16. tab.tableFooterView = UIView.init()
  17. return tab
  18. }()
  19. let headerView: CommonHeaderView = {
  20. let headerV = CommonHeaderView.init(frame: CGRect(x: 0, y: 0, width: UIScreen.main.bounds.width, height: 180))
  21. headerV.isCycle = false
  22. headerV.dataView.earnTitLbl.text = "本月总交易(元)"
  23. headerV.dataView.rewardTitLbl.text = "本日总交易(元)"
  24. return headerV
  25. }()
  26. let headerViewSH: CommonHeaderView = {
  27. let headerV = CommonHeaderView.init(frame: CGRect(x: 0, y: 0, width: UIScreen.main.bounds.width, height: 180))
  28. headerV.isCycle = true
  29. headerV.dataView.earnTitLbl.text = "本月新增商户(个)"
  30. headerV.dataView.rewardTitLbl.text = "本日新增商户(个)"
  31. headerV.dataView1.earnTitLbl.text = "交易已达标"
  32. headerV.dataView1.rewardTitLbl.text = "交易未达标"
  33. headerV.dataView1.rewardControl.addTarget(self, action: #selector(rewardClick), for: .touchUpInside)
  34. return headerV
  35. }()
  36. @objc func rewardClick( ) {
  37. let vc = MerchantsStateVC()
  38. appDelegate.navController.pushViewController(vc, animated: true)
  39. }
  40. override func viewWillAppear(_ animated: Bool) {
  41. super.viewWillAppear(animated)
  42. appDelegate.setNavigationBarHidden(isHidden: false)
  43. }
  44. override func viewDidLoad() {
  45. super.viewDidLoad()
  46. self.view.backgroundColor = UIColor.init(white: 246/255.0, alpha: 1.0)
  47. self.title = strTitle
  48. initNavLeftBackButton()
  49. tableView.frame = self.view.bounds
  50. tableView.delegate = self
  51. tableView.dataSource = self
  52. if strTitle == "商户管理" {
  53. tableView.tableHeaderView = headerViewSH
  54. }
  55. if strTitle == "交易管理" {
  56. tableView.tableHeaderView = headerView
  57. }
  58. // tableView.marginTop(top: viewNav.bottom())
  59. self.view.addSubview(tableView)
  60. loadData()
  61. }
  62. // MARK: - request
  63. func loadData() {
  64. let url1 = RequestURL.machineInforNum
  65. let params1 = NSMutableDictionary()
  66. params1.setValue(CommonValue.getUserId(), forKey: "userId")
  67. params1.setValue("", forKey: "machineTypeId")
  68. submitDatMachineInforNumdic(url: url1, params: params1, tag: 1001)
  69. let url = RequestURL.activityAuth
  70. let params = NSMutableDictionary()
  71. params.setValue(CommonValue.getUserId(), forKey: "userId")
  72. params.setValue("0001", forKey: "code")
  73. loadDataListPost(url: url, params: params, tag: 1001)
  74. let url2 = RequestURL.sumCountByMonthByDay
  75. let param = NSMutableDictionary()
  76. param.setValue(CommonValue.getUserId(), forKey: "userId")
  77. loadDataInfo(url: url2, params: param, tag: 1002)
  78. }
  79. override func returnData(tag: Int) {
  80. machineTypeArr = arrData
  81. for dic in arrDataMj {
  82. let succeed = (dic as! NSDictionary).object(forKey: "name") as! String
  83. if succeed == "交易达标" {
  84. headerViewSH.dataView1.earnLbl.text = "\((dic as! NSDictionary)["num"] as! Int)"
  85. }else if succeed == "交易未达标" {
  86. headerViewSH.dataView1.rewardLbl.text = "\((dic as! NSDictionary)["num"] as! Int)"
  87. }
  88. }
  89. NSLog("\(dicData)")
  90. if (tag==1002){
  91. // if strTitle == "交易管理" {
  92. // headerView.dataView.earnLbl.text = "\(getString(key: "momthTransaction"))"
  93. // headerView.dataView.rewardLbl.text = "\(getString(key: "dayTransaction"))"
  94. // }else{
  95. headerViewSH.dataView.earnLbl.text = "\(getIntValue(key: "momthCount"))"
  96. headerViewSH.dataView.rewardLbl.text = "\(getIntValue(key: "dayCount"))"
  97. headerView.dataView.earnLbl.text = "\(getDoubleValue(key: "momthTransaction"))"
  98. headerView.dataView.rewardLbl.text = "\(getDoubleValue(key: "dayTransaction"))"
  99. // }
  100. tableView.reloadData()
  101. }
  102. }
  103. override func returnError(tag: Int, type: String) {
  104. }
  105. // MARK: - tableviewdelegate
  106. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  107. return machineTypeArr.count
  108. }
  109. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  110. return 60
  111. }
  112. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  113. let cellId = "brandCellId"
  114. var cell = tableView.dequeueReusableCell(withIdentifier: cellId)
  115. if cell == nil {
  116. cell = UITableViewCell.init(style: .default, reuseIdentifier: cellId)
  117. let imgV = UIImageView.init(image: UIImage.init(named: "ion_arrow_right_gray"))
  118. cell?.accessoryView = imgV
  119. cell?.selectionStyle = .none
  120. cell?.textLabel?.font = UIFont.systemFont(ofSize: 15)
  121. }
  122. let machineDic: NSDictionary = machineTypeArr[indexPath.row] as! NSDictionary
  123. cell?.textLabel?.text = machineDic["machineTypeName"] as? String
  124. return cell!
  125. }
  126. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  127. let machineDic: NSDictionary = machineTypeArr[indexPath.row] as! NSDictionary
  128. if strTitle == "交易管理" {
  129. let vc = TradeViewController()
  130. vc.machineTypeId = (machineDic["machineTypeId"] as! String)
  131. vc.titleStr = (machineDic["machineTypeName"] as! String)
  132. appDelegate.navController.pushViewController(vc, animated: true)
  133. } else if strTitle == "商户管理" {
  134. let vc = MyShopListViewController()
  135. vc.machineType = machineDic["machineTypeId"] as! String
  136. vc.strTitle = (machineDic["machineTypeName"] as! String)
  137. appDelegate.navController.pushViewController(vc, animated: true)
  138. } else if strTitle == "我的政策" {
  139. let vc = PolicyViewController()
  140. vc.index = indexPath.row
  141. vc.machineType = (machineDic["machineTypeId"] as! String)
  142. vc.title = (machineDic["machineTypeName"] as! String)
  143. appDelegate.navController.pushViewController(vc, animated: true)
  144. }
  145. }
  146. /*
  147. // MARK: - Navigation
  148. // In a storyboard-based application, you will often want to do a little preparation before navigation
  149. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  150. // Get the new view controller using segue.destination.
  151. // Pass the selected object to the new view controller.
  152. }
  153. */
  154. }