ShoppingMallCollectionViewController.swift 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. //
  2. // ShoppingMallViewController.swift
  3. // CommonFrame
  4. //
  5. // Created by Virgil on 2019/4/18.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class ShoppingMallCollectionViewController: BaseViewController, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
  10. @IBOutlet weak var collectionView: UICollectionView!
  11. let numLabel = UILabel.init()
  12. override func viewDidLoad() {
  13. super.viewDidLoad()
  14. self.navInit()
  15. self.loadType()
  16. collectionView.register(UINib(nibName: "StudyCollectionReusableView", bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "StudyCollectionReusableView")
  17. collectionView.register(UINib(nibName: "ShoppingMallCollectionViewCell", bundle: nil), forCellWithReuseIdentifier: "ShoppingMallCollectionViewCell")
  18. collectionView.delegate = self
  19. collectionView.dataSource = self
  20. collectionView.showsVerticalScrollIndicator = false
  21. collectionView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  22. self!.currentPage = 1
  23. self!.loadData()
  24. })
  25. collectionView.mj_header?.lastUpdatedTimeKey = "NewsListViewController"
  26. collectionView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  27. self!.currentPage += 1
  28. self!.loadData()
  29. })
  30. //设置header 大小 无header去掉
  31. let collectionLayout = collectionView.collectionViewLayout as! UICollectionViewFlowLayout
  32. collectionLayout.headerReferenceSize = CGSize(width: ScreenWidth, height: 16)
  33. collectionView.mj_header?.beginRefreshing()
  34. let shopBtn = UIButton.init()
  35. shopBtn.frame = CGRect(x: kScreenWidth-60, y: kScreenHeight-150, width: 45, height: 45)
  36. shopBtn.addTarget(self, action: #selector(goShopCart), for: .touchUpInside)
  37. shopBtn.setImage(UIImage.init(named: "icon_shop_cart"), for: .normal)
  38. self.view.addSubview(shopBtn)
  39. numLabel.frame = CGRect(x: shopBtn.mj_x+35, y: shopBtn.mj_y+8, width: 15, height: 15)
  40. // numLabel.center = shopCarBtn.center
  41. numLabel.backgroundColor = .red
  42. numLabel.font = UIFont.systemFont(ofSize: 10)
  43. numLabel.textColor = .white
  44. numLabel.layer.cornerRadius = 7.5
  45. numLabel.textAlignment = .center
  46. numLabel.layer.masksToBounds = true
  47. numLabel.isHidden = true
  48. self.view.addSubview(numLabel)
  49. loadNum()
  50. }
  51. // 自定义导航栏
  52. func navInit() {
  53. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  54. viewNav.initView(title: "商城") {[weak self] (index, _) in
  55. if index == 1 {
  56. // self!.handleBack();
  57. // 我的订单
  58. let vc = MyOrderViewController()
  59. self?.navigationController?.pushViewController(vc, animated: true)
  60. }
  61. }
  62. self.view.addSubview(viewNav)
  63. viewNav.btnLeft.isHidden = true
  64. viewNav.initRightBtn(title: "我的订单")
  65. }
  66. @objc func goShopCart() {
  67. toViewController(viewController: OrderController())
  68. }
  69. var typeId = ""
  70. ///加载头部的菜单
  71. func loadMenu() {
  72. var arrTitle = [String]()
  73. for i in 0 ..< arrType.count {
  74. arrTitle.append(arrType.getString(index: i, key: "type_name"))
  75. }
  76. let segment = Virgil_SegmentView(frame: CGRect(x: 0, y: common_nav_status_height, width: ScreenWidth, height: 47), titles: arrTitle, defaultColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x333333, alpha: 1.0), currentColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x2094F5, alpha: 1.0), lineHeight: 2, lineIsBottom: true) {[weak self] (index) in
  77. self!.currentPage = 1
  78. let dic = self?.arrType[index] as!NSDictionary
  79. self?.typeId = "\(dic["product_type"] as! Int)"
  80. self!.collectionView.mj_header?.beginRefreshing()
  81. }
  82. self.view.addSubview(segment)
  83. let dic = self.arrType[0] as!NSDictionary
  84. self.typeId = "\(dic["product_type"] as! Int)"
  85. collectionView.mj_header?.beginRefreshing()
  86. }
  87. // MARK: =============加载数据===============
  88. var productType = 1
  89. func loadData() {
  90. // let url = RequestURL.productPageList;
  91. let params = NSMutableDictionary()
  92. params.setValue(CommonValue.getUserId(), forKey: "userId")
  93. params.setValue(self.typeId, forKey: "productType")
  94. TloadDataListForCollectionView(url: RequestURL.getProductList, params: params, collectionView: collectionView, tag: 1001)
  95. }
  96. var arrType = NSArray()
  97. // MARK: =============加载数据===============
  98. func loadType() {
  99. let params = NSMutableDictionary()
  100. params.setValue(CommonValue.getUserId(), forKey: "userId")
  101. // loadDataList(url: url, params: params, tag: 1001, array: arrType)
  102. let http = AFHTTPSessionManager()
  103. http.get(RequestURL.getProductType, parameters: params, progress: { (_) in
  104. }, success: { (operation, json) in
  105. print(json as Any)
  106. let success = (json as! NSDictionary).object(forKey: "statusCode") as! Int
  107. if success == 200 {
  108. self.arrType = (json as! NSDictionary).object(forKey: "data") as! NSArray
  109. self.loadMenu()
  110. }
  111. }) { (_, _) in
  112. }
  113. }
  114. override func returnData(tag: Int) {
  115. if tag == 1001 {
  116. collectionView.reloadData()
  117. }
  118. }
  119. override func returnError(tag: Int, type: String) {
  120. }
  121. //返回分区个数
  122. func numberOfSections(in collectionView: UICollectionView) -> Int {
  123. return 1
  124. }
  125. //返回每个分区的item个数
  126. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  127. return self.arrData.count
  128. }
  129. //定义每个UICollectionView 的大小
  130. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
  131. return CGSize(width: ScreenWidth / 2, height: (ScreenWidth - 30) / 2 + 58)
  132. }
  133. //初始化header
  134. func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
  135. var reusableView: StudyCollectionReusableView!
  136. if kind == UICollectionView.elementKindSectionHeader {
  137. reusableView = collectionView.dequeueReusableSupplementaryView(ofKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "StudyCollectionReusableView", for: indexPath) as! StudyCollectionReusableView
  138. reusableView.lblTitle.isHidden = true
  139. reusableView.lblLine.isHidden = true
  140. } else {
  141. reusableView = StudyCollectionReusableView()
  142. }
  143. return reusableView
  144. }
  145. //初始化cell
  146. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  147. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "ShoppingMallCollectionViewCell", for: indexPath) as! ShoppingMallCollectionViewCell
  148. cell.initCell(rowIndex: indexPath.row, dic: self.arrData[indexPath.row] as! NSDictionary)
  149. return cell
  150. }
  151. //定义每个UICollectionView 的间距
  152. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
  153. return UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
  154. }
  155. //定义每个UICollectionView 纵向的间距
  156. func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
  157. return 0
  158. }
  159. //选中
  160. func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  161. let view = ShoppingMallDetailViewController()
  162. view.id = getString(current: indexPath.row, key: "id")
  163. self.navigationController?.pushViewController(view, animated: true)
  164. }
  165. override func viewWillAppear(_ animated: Bool) {
  166. super.viewWillAppear(animated)
  167. appDelegate.setNavigationBarHidden(isHidden: true)
  168. loadNum()
  169. }
  170. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  171. super.init(nibName: "ShoppingMallCollectionViewController", bundle: nil)
  172. }
  173. required init?(coder aDecoder: NSCoder) {
  174. fatalError("init(coder:) has not been implemented")
  175. }
  176. func loadNum() {
  177. let params = NSMutableDictionary()
  178. params.setValue(CommonValue.getUserId(), forKey: "userId")
  179. let http = AFHTTPSessionManager()
  180. http.get(RequestURL.getProductOrderList, parameters: params, progress: { (_) in
  181. }, success: { (operation, json) in
  182. print(json as Any)
  183. let success = (json as! NSDictionary).object(forKey: "statusCode") as! Int
  184. if success == 200 {
  185. let dataArr: NSArray = (json as! NSDictionary).object(forKey: "data") as! NSArray
  186. if dataArr.count > 0 {
  187. self.numLabel.isHidden = false
  188. self.numLabel.text = "\(dataArr.count)"
  189. } else {
  190. self.numLabel.isHidden = true
  191. }
  192. }
  193. }) { (_, _) in
  194. }
  195. }
  196. }