CarInsuranceViewController.swift 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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 CarInsuranceViewController: 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: "CarInsuranceCollectionViewCell", bundle: nil), forCellWithReuseIdentifier: "CarInsuranceCollectionViewCell")
  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. // })
  28. // collectionView.mj_header.lastUpdatedTimeKey = "NewsListViewController"
  29. // collectionView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {
  30. // self.currentPage += 1
  31. // self.loadData()
  32. // })
  33. loadHeaderData()
  34. }
  35. // MARK: =============加载数据===============
  36. let arrHeader = NSMutableArray()
  37. func loadHeaderData() {
  38. let url = RequestURL.findAdvertisingWheel
  39. let params = NSMutableDictionary()
  40. params.setValue(0, forKey: "position")
  41. loadDataList(url: url, params: params, tag: 1003, array: arrHeader)
  42. }
  43. func loadData() {
  44. // for i in 0 ..< 20
  45. // {
  46. // arrData.add(i)
  47. // }
  48. // collectionView.mj_header.endRefreshing()
  49. // collectionView.mj_footer.endRefreshing()
  50. // returnData(tag:1001);
  51. // let url = RequestURL.bookList;
  52. // let params = NSMutableDictionary()
  53. // params.setValue("", forKey: "subjectId")
  54. // params.setValue("", forKey: "showTimeSort")
  55. // params.setValue("", forKey: "priceSort")
  56. // loadDataList(url: url, params: params, tableView: self.tableView,tag:1001)
  57. }
  58. override func returnData(tag: Int) {
  59. if tag == 1001 {
  60. collectionView.reloadData()
  61. } else if tag == 1003 {
  62. if arrHeader.count > 0 {
  63. var imgUrl = [String]()
  64. for i in 0 ..< arrHeader.count {
  65. imgUrl.append(getStringForArray(key: "img_path", arr: arrHeader, current: i))
  66. }
  67. 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]
  68. (item) -> Void in
  69. if CommonValue.getUserId() == "" {
  70. appDelegate.navController.pushViewController(LoginViewController(), animated: true)
  71. return
  72. }
  73. let type = (self!.arrHeader[item] as! NSDictionary).getInt(key: "type")
  74. ///0:内部web 1:外部web 111:邀请好友 222开通商户
  75. if type == 0 || type == 1 {
  76. let web = CommonWebViewViewController()
  77. web.strTitle = "详情"
  78. web.url = (self!.arrHeader[item] as! NSDictionary).getString(key: "web_url")
  79. appDelegate.navController.pushViewController(web, animated: true)
  80. } else if type == 111 {
  81. let vc = InviteViewController()
  82. appDelegate.navController.pushViewController(vc, animated: true)
  83. } else if type == 222 {
  84. let vc = SelectPayBrandViewController()
  85. appDelegate.navController.pushViewController(vc, animated: true)
  86. }
  87. }
  88. viewHeader.backgroundColor = UIColor.clear
  89. viewHeader.titles = ["1111", "2222", "3333", "4444"]
  90. viewTop.removeAll()
  91. viewTop.addSubview(viewHeader)
  92. }
  93. collectionView.reloadData()
  94. }
  95. }
  96. override func returnError(tag: Int, type: String) {
  97. if tag == 1003 {
  98. collectionView.mj_header?.beginRefreshing()
  99. }
  100. }
  101. //返回分区个数
  102. func numberOfSections(in collectionView: UICollectionView) -> Int {
  103. return 1
  104. }
  105. //返回每个分区的item个数
  106. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  107. return self.arrTitle.count
  108. }
  109. //定义每个UICollectionView 的大小
  110. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
  111. return CGSize(width: (ScreenWidth-10)/3, height: (ScreenWidth - 10) / 3 / 180 * 200)
  112. }
  113. let arrImages = ["ion_vehicle_03", "ion_vehicle_04", "ion_vehicle_05", "ion_vehicle_06", "ion_vehicle_07", "ion_vehicle_08", "ion_vehicle_09"]
  114. let arrTitle = ["待投保", "我的保单", "团队保险", "车险保险", "优惠查询", "投保指引", "常见问题"]
  115. //初始化cell
  116. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  117. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "CarInsuranceCollectionViewCell", for: indexPath) as! CarInsuranceCollectionViewCell
  118. cell.img.image = UIImage(named: arrImages[indexPath.row])
  119. cell.lblName.text = arrTitle[indexPath.row]
  120. return cell
  121. }
  122. //定义每个UICollectionView 的间距
  123. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
  124. return UIEdgeInsets(top: 10, left: 0, bottom: 0, right: 0)
  125. }
  126. //定义每个UICollectionView 纵向的间距
  127. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
  128. return 0
  129. }
  130. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
  131. return 5
  132. }
  133. //选中
  134. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  135. }
  136. override func viewWillAppear(_ animated: Bool) {
  137. super.viewWillAppear(animated)
  138. }
  139. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  140. super.init(nibName: "CarInsuranceViewController", bundle: nil)
  141. }
  142. required init?(coder aDecoder: NSCoder) {
  143. fatalError("init(coder:) has not been implemented")
  144. }
  145. }