ShoppingMallViewController.swift 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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 ShoppingMallViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. @IBOutlet weak var tableViewMarginBottom: NSLayoutConstraint!
  11. @IBOutlet weak var tableView: UITableView!
  12. override func viewDidLoad() {
  13. super.viewDidLoad()
  14. initNavLeftBackButton()
  15. tableView.register(UINib(nibName: "ShoppingMallTableViewCell", bundle: nil), forCellReuseIdentifier: "ShoppingMallTableViewCell")
  16. tableView.delegate = self
  17. tableView.dataSource = self
  18. tableView.separatorStyle = .none
  19. tableView.showsVerticalScrollIndicator = false
  20. tableView.estimatedRowHeight = 100
  21. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  22. self!.currentPage = 1
  23. self!.loadData()
  24. })
  25. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  26. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  27. self!.currentPage += 1
  28. self!.loadData()
  29. })
  30. if #available(iOS 11.0, *) {
  31. } else {
  32. tableViewMarginBottom.constant = 48
  33. }
  34. tableView.mj_header?.beginRefreshing()
  35. initNavRightButtonForTitle(title: "我的订单", color: UIColor.white)
  36. }
  37. override func btnRightMenuClick() {
  38. toViewController(viewController: MyOrderViewController())
  39. }
  40. // MARK: =============加载数据===============
  41. func loadData() {
  42. let url = RequestURL.productPageList
  43. let params = NSMutableDictionary()
  44. loadDataList(url: url, params: params, tableView: self.tableView, tag: 1001)
  45. }
  46. override func returnData(tag: Int) {
  47. if tag == 1001 {
  48. tableView.reloadData()
  49. }
  50. }
  51. override func returnError(tag: Int, type: String) {
  52. }
  53. // MARK: TABLEVLEW 实现
  54. func numberOfSections(in tableView: UITableView) -> Int {
  55. return 1
  56. }
  57. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  58. return self.arrData.count
  59. }
  60. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  61. return 140
  62. }
  63. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  64. let cell = tableView.dequeueReusableCell(withIdentifier: "ShoppingMallTableViewCell", for: indexPath as IndexPath) as! ShoppingMallTableViewCell
  65. cell.lblName.text = getString(current: indexPath.row, key: "name")
  66. cell.lblDesc.text = "数量:\(getIntValue(current: indexPath.row, key: "num")) | 销量:\(getIntValue(current: indexPath.row, key: "sales_num"))"
  67. let strPrice = "¥\(getDoubleValue(current: indexPath.row, key: "price", defaultValue: 0.0))"
  68. cell.lblMoney.attributedText = CommonViewUntils.getAttributedStringForFont(str: strPrice, rangs: [NSRange.init(location: 0, length: 1), NSRange.init(location: 1, length: strPrice.length() - 1)], fonts: [UIFont.systemFont(ofSize: 10), UIFont.systemFont(ofSize: 14)])
  69. cell.imgShow.loadImage(imgUrl: getString(current: indexPath.row, key: "image"), defaultImage: "")
  70. return cell
  71. }
  72. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  73. let view = ShoppingMallDetailViewController()
  74. view.id = getString(current: indexPath.row, key: "id")
  75. self.navigationController?.pushViewController(view, animated: true)
  76. }
  77. override func viewWillAppear(_ animated: Bool) {
  78. super.viewWillAppear(animated)
  79. self.title = "优惠商城"
  80. }
  81. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  82. super.init(nibName: "ShoppingMallViewController", bundle: nil)
  83. }
  84. required init?(coder aDecoder: NSCoder) {
  85. fatalError("init(coder:) has not been implemented")
  86. }
  87. }