MyOrderViewController.swift 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. //
  2. // MyOrderViewController.swift
  3. // CommonFrame
  4. //
  5. // Created by Virgil on 2019/4/19.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class MyOrderViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. @IBOutlet weak var tableView: UITableView!
  11. ///0:正常返回 1:返回到商城页
  12. var fromType = 0
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. self.title = "我的订单"
  16. initNavLeftBackButton()
  17. tableView.register(UINib(nibName: "MyOrderListTableViewCell", bundle: nil), forCellReuseIdentifier: "MyOrderListTableViewCell")
  18. tableView.delegate = self
  19. tableView.dataSource = self
  20. tableView.separatorStyle = .none
  21. tableView.showsVerticalScrollIndicator = false
  22. tableView.estimatedRowHeight = 100
  23. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  24. self!.currentPage = 1
  25. self!.loadData()
  26. })
  27. tableView.mj_header?.lastUpdatedTimeKey = "MyOrderListTableViewCell"
  28. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  29. self!.currentPage += 1
  30. self!.loadData()
  31. })
  32. tableView.mj_header?.beginRefreshing()
  33. // Do any additional setup after loading the view.
  34. }
  35. override func handleBack() {
  36. if fromType == 0 {
  37. super.handleBack()
  38. } else {
  39. if !CommonUntils.reBackView(controller: self, aclass: ShoppingMallViewController.classForCoder()) {
  40. self.navigationController?.popToRootViewController(animated: true)
  41. }
  42. }
  43. }
  44. // MARK: =============加载数据===============
  45. func loadData() {
  46. let url = RequestURL.getProductOrderMainList
  47. let params = NSMutableDictionary()
  48. TloadDataList(url: url, params: params, tableView: self.tableView, tag: 1001)
  49. }
  50. override func returnData(tag: Int) {
  51. if tag == 1001 {
  52. tableView.reloadData()
  53. }
  54. }
  55. override func returnError(tag: Int, type: String) {
  56. }
  57. // MARK: TABLEVLEW 实现
  58. func numberOfSections(in tableView: UITableView) -> Int {
  59. return 1
  60. }
  61. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  62. return self.arrData.count
  63. }
  64. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  65. return 100
  66. }
  67. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  68. let cell = tableView.dequeueReusableCell(withIdentifier: "MyOrderListTableViewCell", for: indexPath as IndexPath) as! MyOrderListTableViewCell
  69. cell.selectionStyle = .none
  70. //cell.lblTitle.text = getString(indexPath.row, key: "Name")
  71. let dic = self.arrData[indexPath.row]as!NSDictionary
  72. cell.initCell(rowIndex: indexPath.row, dic: dic)
  73. cell.btn1.addTarget(self, action: #selector(btnTouc(sender:)), for: .touchUpInside)
  74. cell.btn2.addTarget(self, action: #selector(btnTouc(sender:)), for: .touchUpInside)
  75. cell.btn3.addTarget(self, action: #selector(btnTouc(sender:)), for: .touchUpInside)
  76. cell.btn1.tag = indexPath.row
  77. cell.btn2.tag = indexPath.row
  78. cell.btn3.tag = indexPath.row
  79. return cell
  80. }
  81. @objc func btnTouc(sender: UIButton) {
  82. let index = sender.tag
  83. let lin = Int(sender.titleLabel!.text!)
  84. let dic = self.arrData[index]as!NSDictionary
  85. let array = dic["productOrderlist"]as!NSArray
  86. let goodsDic = array[lin!]as!NSDictionary
  87. let view = ShoppingMallDetailViewController()
  88. view.id = goodsDic.getString(key: "product_id")
  89. self.navigationController?.pushViewController(view, animated: true)
  90. }
  91. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  92. tableView.deselectRow(at: indexPath, animated: true)
  93. let dic = self.arrData[indexPath.row]as!NSDictionary
  94. let vc = MyOrderDtialViewController()
  95. //let dicProduct = (self.arrData[indexPath.row] as! NSDictionary)["product"] as! NSDictionary;
  96. vc.orderId = dic.getString(key: "id")
  97. //vc.dicData.setDictionary((self.arrData[indexPath.row] as! NSDictionary) as! [AnyHashable : Any])
  98. toViewController(viewController: vc)
  99. }
  100. override func viewWillAppear(_ animated: Bool) {
  101. super.viewWillAppear(animated)
  102. if common_back_is_reload {
  103. loadData()
  104. common_back_is_reload = false
  105. }
  106. }
  107. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  108. super.init(nibName: "MyOrderViewController", bundle: nil)
  109. }
  110. required init?(coder aDecoder: NSCoder) {
  111. fatalError("init(coder:) has not been implemented")
  112. }
  113. }