123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- import UIKit
- class ApplyCardPercentViewController: BaseViewController, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
- @IBOutlet weak var viewTopHeight: NSLayoutConstraint!
- @IBOutlet weak var collectionView: UICollectionView!
- @IBOutlet weak var viewTop: UIView!
- override func viewDidLoad() {
- super.viewDidLoad()
- self.title = "进度查询"
- initNavLeftBackButton()
- viewTopHeight.constant = ScreenWidth / 375 * 95
-
- collectionView.register(UINib(nibName: "ApplyCardStrategyCollectionViewCell", bundle: nil), forCellWithReuseIdentifier: "ApplyCardStrategyCollectionViewCell")
- collectionView.delegate = self
- collectionView.dataSource = self
- collectionView.showsVerticalScrollIndicator = false
- collectionView.mj_header = MJRefreshNormalHeader(refreshingBlock: {
- self.currentPage = 1
- self.loadData()
- })
- collectionView.mj_header?.lastUpdatedTimeKey = "NewsListViewController"
- collectionView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {
- self.currentPage += 1
- self.loadData()
- })
- loadHeaderData()
- }
-
- let arrHeader = NSMutableArray()
- func loadHeaderData() {
- let url = RequestURL.findAdvertisingWheel
- let params = NSMutableDictionary()
- params.setValue(0, forKey: "position")
- loadDataList(url: url, params: params, tag: 1003, array: arrHeader)
- }
- func loadData() {
- for i in 0 ..< 20 {
- arrData.add(i)
- }
- collectionView.mj_header?.endRefreshing()
- collectionView.mj_footer?.endRefreshing()
- returnData(tag: 1001)
-
-
-
-
-
-
- }
- override func returnData(tag: Int) {
- if tag == 1001 {
- collectionView.reloadData()
- } else if tag == 1003 {
- if arrHeader.count > 0 {
- var imgUrl = [String]()
- for i in 0 ..< arrHeader.count {
- imgUrl.append(getStringForArray(key: "img_path", arr: arrHeader, current: i))
- }
- 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]
- (item) -> Void in
- if CommonValue.getUserId() == "" {
- appDelegate.navController.pushViewController(LoginViewController(), animated: true)
- return
- }
- let type = (self!.arrHeader[item] as! NSDictionary).getInt(key: "type")
-
- if type == 0 || type == 1 {
- let web = CommonWebViewViewController()
- web.strTitle = "详情"
- web.url = (self!.arrHeader[item] as! NSDictionary).getString(key: "web_url")
- appDelegate.navController.pushViewController(web, animated: true)
- } else if type == 111 {
- let vc = InviteViewController()
- appDelegate.navController.pushViewController(vc, animated: true)
- } else if type == 222 {
- let vc = SelectPayBrandViewController()
- appDelegate.navController.pushViewController(vc, animated: true)
- }
- }
- viewHeader.backgroundColor = UIColor.clear
- viewHeader.titles = ["1111", "2222", "3333", "4444"]
- viewTop.removeAll()
- viewTop.addSubview(viewHeader)
- }
- collectionView.mj_header?.beginRefreshing()
- }
- }
- override func returnError(tag: Int, type: String) {
- if tag == 1003 {
- collectionView.mj_header?.beginRefreshing()
- }
- }
-
- func numberOfSections(in collectionView: UICollectionView) -> Int {
- return 1
- }
-
- func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
- return self.arrData.count
- }
-
- func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
- return CGSize(width: (ScreenWidth-80)/3, height: (ScreenWidth-80)/3 / 99 * 82)
- }
- let arrImages = ["ion_card_13", "ion_card_14", "ion_card_15", "ion_card_16", "ion_card_17", "ion_card_18"]
-
- func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
- let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "ApplyCardStrategyCollectionViewCell", for: indexPath) as! ApplyCardStrategyCollectionViewCell
- cell.img.image = UIImage(named: arrImages[CommonUntils.getRandom(min: 0, max: 5)])
- return cell
- }
-
- func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAt section: Int) -> UIEdgeInsets {
- return UIEdgeInsets(top: 20, left: 0, bottom: 0, right: 0)
- }
-
- func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
- return 0
- }
- func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
- return 10
- }
-
- func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
- }
- override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
- }
- override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
- super.init(nibName: "ApplyCardPercentViewController", bundle: nil)
- }
- required init?(coder aDecoder: NSCoder) {
- fatalError("init(coder:) has not been implemented")
- }
- }
|