ApplyCardPercentViewController.swift 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. //
  2. // ApplyCardPercentViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/4/25.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class ApplyCardPercentViewController: BaseViewController, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
  10. @IBOutlet weak var viewTopHeight: NSLayoutConstraint!
  11. @IBOutlet weak var collectionView: UICollectionView!
  12. @IBOutlet weak var viewTop: UIView!
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. self.title = "进度查询"
  16. initNavLeftBackButton()
  17. viewTopHeight.constant = ScreenWidth / 375 * 95
  18. //添加header 无header去掉 需要创建 UICollectionReusableView
  19. collectionView.register(UINib(nibName: "ApplyCardStrategyCollectionViewCell", bundle: nil), forCellWithReuseIdentifier: "ApplyCardStrategyCollectionViewCell")
  20. collectionView.delegate = self
  21. collectionView.dataSource = self
  22. collectionView.showsVerticalScrollIndicator = false
  23. collectionView.mj_header = MJRefreshNormalHeader(refreshingBlock: {
  24. self.currentPage = 1
  25. self.loadData()
  26. })
  27. collectionView.mj_header?.lastUpdatedTimeKey = "NewsListViewController"
  28. collectionView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {
  29. self.currentPage += 1
  30. self.loadData()
  31. })
  32. loadHeaderData()
  33. }
  34. // MARK: =============加载数据===============
  35. let arrHeader = NSMutableArray()
  36. func loadHeaderData() {
  37. let url = RequestURL.findAdvertisingWheel
  38. let params = NSMutableDictionary()
  39. params.setValue(0, forKey: "position")
  40. loadDataList(url: url, params: params, tag: 1003, array: arrHeader)
  41. }
  42. func loadData() {
  43. for i in 0 ..< 20 {
  44. arrData.add(i)
  45. }
  46. collectionView.mj_header?.endRefreshing()
  47. collectionView.mj_footer?.endRefreshing()
  48. returnData(tag: 1001)
  49. // let url = RequestURL.bookList;
  50. // let params = NSMutableDictionary()
  51. // params.setValue("", forKey: "subjectId")
  52. // params.setValue("", forKey: "showTimeSort")
  53. // params.setValue("", forKey: "priceSort")
  54. // loadDataList(url: url, params: params, tableView: self.tableView,tag:1001)
  55. }
  56. override func returnData(tag: Int) {
  57. if tag == 1001 {
  58. collectionView.reloadData()
  59. } else if tag == 1003 {
  60. if arrHeader.count > 0 {
  61. var imgUrl = [String]()
  62. for i in 0 ..< arrHeader.count {
  63. imgUrl.append(getStringForArray(key: "img_path", arr: arrHeader, current: i))
  64. }
  65. let viewHeader = Virgil_PagedView(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: viewTopHeight.constant), imageURLStrings: imgUrl, placeholderImage: UIImage(named: "img_banner_01")!, timeInterval: 6) {[weak self]
  66. (item) -> Void in
  67. if CommonValue.getUserId() == "" {
  68. appDelegate.navController.pushViewController(LoginViewController(), animated: true)
  69. return
  70. }
  71. let type = (self!.arrHeader[item] as! NSDictionary).getInt(key: "type")
  72. ///0:内部web 1:外部web 111:邀请好友 222开通商户
  73. if type == 0 || type == 1 {
  74. let web = CommonWebViewViewController()
  75. web.strTitle = "详情"
  76. web.url = (self!.arrHeader[item] as! NSDictionary).getString(key: "web_url")
  77. appDelegate.navController.pushViewController(web, animated: true)
  78. } else if type == 111 {
  79. let vc = InviteViewController()
  80. appDelegate.navController.pushViewController(vc, animated: true)
  81. } else if type == 222 {
  82. let vc = SelectPayBrandViewController()
  83. appDelegate.navController.pushViewController(vc, animated: true)
  84. }
  85. }
  86. viewHeader.backgroundColor = UIColor.clear
  87. viewHeader.titles = ["1111", "2222", "3333", "4444"]
  88. viewTop.removeAll()
  89. viewTop.addSubview(viewHeader)
  90. }
  91. collectionView.mj_header?.beginRefreshing()
  92. }
  93. }
  94. override func returnError(tag: Int, type: String) {
  95. if tag == 1003 {
  96. collectionView.mj_header?.beginRefreshing()
  97. }
  98. }
  99. //返回分区个数
  100. func numberOfSections(in collectionView: UICollectionView) -> Int {
  101. return 1
  102. }
  103. //返回每个分区的item个数
  104. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  105. return self.arrData.count
  106. }
  107. //定义每个UICollectionView 的大小
  108. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
  109. return CGSize(width: (ScreenWidth-80)/3, height: (ScreenWidth-80)/3 / 99 * 82)
  110. }
  111. let arrImages = ["ion_card_13", "ion_card_14", "ion_card_15", "ion_card_16", "ion_card_17", "ion_card_18"]
  112. //初始化cell
  113. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  114. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "ApplyCardStrategyCollectionViewCell", for: indexPath) as! ApplyCardStrategyCollectionViewCell
  115. cell.img.image = UIImage(named: arrImages[CommonUntils.getRandom(min: 0, max: 5)])
  116. return cell
  117. }
  118. //定义每个UICollectionView 的间距
  119. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
  120. return UIEdgeInsets(top: 20, left: 0, bottom: 0, right: 0)
  121. }
  122. //定义每个UICollectionView 纵向的间距
  123. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
  124. return 0
  125. }
  126. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
  127. return 10
  128. }
  129. //选中
  130. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  131. }
  132. override func viewWillAppear(_ animated: Bool) {
  133. super.viewWillAppear(animated)
  134. }
  135. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  136. super.init(nibName: "ApplyCardPercentViewController", bundle: nil)
  137. }
  138. required init?(coder aDecoder: NSCoder) {
  139. fatalError("init(coder:) has not been implemented")
  140. }
  141. }