OrderDetailViewController.swift 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. //
  2. // OrderDetailViewController.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 OrderDetailViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  10. @IBOutlet weak var viewTopHeight: NSLayoutConstraint!
  11. @IBOutlet weak var viewTop: UIView!
  12. @IBOutlet weak var tableViewHeight: NSLayoutConstraint!
  13. @IBOutlet weak var tableView: UITableView!
  14. @IBOutlet weak var btnPay: UIButton!
  15. @IBOutlet weak var lblAddress: UILabel!
  16. @IBOutlet weak var lblPhone: UILabel!
  17. @IBOutlet weak var lblName: UILabel!
  18. // @IBOutlet weak var lblDate: UILabel!
  19. // @IBOutlet weak var lblMoney: UILabel!
  20. // @IBOutlet weak var lblNo: UILabel!
  21. var orderId = ""
  22. var arrTitle = ["订单号", "订单金额", "下单时间", "订单状态", "付款方式", "快递公司", "快递单号"]
  23. var arrContent = ["", "", "", "", "", "", "", ""]
  24. override func viewDidLoad() {
  25. super.viewDidLoad()
  26. self.title = "订单详情"
  27. initNavLeftBackButton()
  28. tableView.register(UINib(nibName: "OrderDetailTableViewCell", bundle: nil), forCellReuseIdentifier: "OrderDetailTableViewCell")
  29. tableView.delegate = self
  30. tableView.dataSource = self
  31. tableView.separatorStyle = .none
  32. tableView.showsVerticalScrollIndicator = false
  33. tableView.estimatedRowHeight = 100
  34. }
  35. var count = 0
  36. func initData() {
  37. lblName.text = "收货人:\(getString(key: "linkname"))"
  38. lblPhone.text = "手机号:\(getString(key: "linkphone"))"
  39. lblAddress.text = "收货地址:\(getString(key: "linkaddress"))"
  40. arrContent[0] = getString(key: "order_code")
  41. arrContent[1] = "¥\(getDoubleValue(key: "total"))"
  42. arrContent[2] = getString(key: "createtime")
  43. let delivery_type = getIntValue(key: "delivery_type")
  44. let paytype = getIntValue(key: "paytype")
  45. if paytype == 2 {
  46. arrContent[4] = "微信"
  47. } else {
  48. arrContent[4] = "支付宝"
  49. }
  50. let status = getIntValue(key: "status")
  51. if status == 0 {
  52. count = 4
  53. arrContent[3] = "未支付"
  54. btnPay.isHidden = false
  55. } else if status == 1 {
  56. count = 5
  57. arrContent[3] = "已支付,待发货"
  58. btnPay.isHidden = true
  59. } else if status == 2 {
  60. count = 7
  61. arrContent[3] = "已发货"
  62. btnPay.isHidden = false
  63. btnPay.setTitle("确认收货", for: .normal)
  64. } else if status == 3 {
  65. count = 7
  66. arrContent[3] = "已确认收货"
  67. btnPay.isHidden = true
  68. }
  69. if delivery_type == 1 {
  70. viewTopHeight.constant = 0
  71. if status == 0 {
  72. count = 4
  73. } else {
  74. count = 5
  75. }
  76. }
  77. btnPay.setCornerRadius(size: btnPay.height() / 2)
  78. arrContent[5] = getString(key: "courier_name")
  79. arrContent[6] = getString(key: "courier_code")
  80. tableViewHeight.constant = 45 * CGFloat(count)
  81. tableView.reloadData()
  82. }
  83. @IBAction func btnPayClick(_ sender: Any) {
  84. let status = getIntValue(key: "status")
  85. if status == 0 {
  86. let vc = PayShoppingMallViewController()
  87. vc.fromType = 1
  88. vc.orderId = dicData.getString(key: "id")
  89. vc.money = String.init(format: "%.2f", dicData.getDouble(key: "total"))
  90. toViewController(viewController: vc)
  91. } else if status == 2 {
  92. submitData()
  93. }
  94. }
  95. // MARK: =============加载数据===============
  96. func loadData() {
  97. let url = RequestURL.getProductOrderMain
  98. let params = NSMutableDictionary()
  99. params.setValue(orderId, forKey: "id")
  100. TloadDataInfo(url: url, params: params, tag: 1002)
  101. }
  102. func submitData() {
  103. let url = RequestURL.confirmOrder
  104. let params = NSMutableDictionary()
  105. params.setValue(orderId, forKey: "id")
  106. submitData(url: url, params: params, tag: 1001)
  107. }
  108. override func returnData(tag: Int) {
  109. if tag == 1001 {
  110. SVProgressHUD.showSuccess(withStatus: "确认收货成功")
  111. loadData()
  112. } else if tag == 1002 {
  113. let dicPro = dicData["productOrderlist"] as! NSArray
  114. dicData.setDic(dic: dicPro[0] as! NSDictionary)
  115. initData()
  116. }
  117. }
  118. override func returnError(tag: Int, type: String) {
  119. }
  120. // MARK: TABLEVLEW 实现
  121. func numberOfSections(in tableView: UITableView) -> Int {
  122. return 1
  123. }
  124. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  125. return count
  126. }
  127. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  128. return 45
  129. }
  130. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  131. let cell = tableView.dequeueReusableCell(withIdentifier: "OrderDetailTableViewCell", for: indexPath as IndexPath) as! OrderDetailTableViewCell
  132. cell.lblTitle.text = arrTitle[indexPath.row]
  133. cell.lblContent.isHidden = false
  134. cell.btnContent.isHidden = true
  135. if arrTitle[indexPath.row] == "订单金额" {
  136. let strPrice = arrContent[indexPath.row]
  137. cell.lblContent.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)])
  138. } else if arrTitle[indexPath.row] == "快递单号" {
  139. if arrContent[indexPath.row] != "" {
  140. cell.lblContent.isHidden = true
  141. cell.btnContent.isHidden = false
  142. cell.btnContent.tag = indexPath.row
  143. cell.btnContent.addTarget(self, action: #selector(btnContentClick), for: .touchUpInside)
  144. cell.btnContent.setAttributedTitle(CommonViewUntils.getAttributedStringForFontUnderline(str: arrContent[indexPath.row], color: CommonUntils.getUIColorFromRGB(rgbValue: 0x2A92F7, alpha: 1.0), font: UIFont.systemFont(ofSize: 14)), for: .normal)
  145. }
  146. } else {
  147. cell.lblContent.text = arrContent[indexPath.row]
  148. }
  149. return cell
  150. }
  151. @objc func btnContentClick(btn: UIButton) {
  152. let vc = CommonWebViewViewController()
  153. vc.strTitle = "快递详情"
  154. vc.url = "https://m.kuaidi100.com/result.jsp?nu=\(arrContent[btn.tag])"
  155. toViewController(viewController: vc)
  156. }
  157. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  158. // let view = UIViewController()
  159. // view.oneGoId = self.arrData[indexPath.row]["ItemId"] as! Int
  160. // self.navigationController?.pushViewController(view, animated: true)
  161. }
  162. override func viewWillAppear(_ animated: Bool) {
  163. super.viewWillAppear(animated)
  164. loadData()
  165. }
  166. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  167. super.init(nibName: "OrderDetailViewController", bundle: nil)
  168. }
  169. required init?(coder aDecoder: NSCoder) {
  170. fatalError("init(coder:) has not been implemented")
  171. }
  172. }