MyOrderDtialViewController.swift 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. //
  2. // MyOrderDtialViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Apple on 2020/10/21.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class MyOrderDtialViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  10. @IBOutlet weak var tableView: UITableView!
  11. var orderId = ""
  12. var arrTitle = ["订单编号:", "订单金额:", "订单运费:", "下单时间:", "付款时间:", "付款方式:", "快递公司:", "快递单号:"]
  13. var arrText = ["order_code", "total", "freight", "createtime", "paytime", "paytype", "courier_name", "courier_code"]
  14. var dataArray = NSArray.init()
  15. override func viewDidLoad() {
  16. super.viewDidLoad()
  17. self.title = "订单详情"
  18. initNavLeftBackButton()
  19. tableView.register(UINib(nibName: "MyOrderTableViewCell", bundle: nil), forCellReuseIdentifier: "MyOrderTableViewCell")
  20. tableView.delegate = self
  21. tableView.dataSource = self
  22. tableView.separatorStyle = .none
  23. tableView.showsVerticalScrollIndicator = false
  24. tableView.estimatedRowHeight = 100
  25. self.view.addSubview(tableView)
  26. // Do any additional setup after loading the view.
  27. }
  28. func loadData() {
  29. let url = RequestURL.getProductOrderMain
  30. let params = NSMutableDictionary()
  31. params.setValue(orderId, forKey: "id")
  32. TloadDataInfo(url: url, params: params, tag: 1002)
  33. }
  34. override func returnData(tag: Int) {
  35. let dicPro = dicData["productOrderlist"] as! NSArray
  36. self.dataArray = dicPro
  37. tableView.reloadData()
  38. let fooerView = UIView.init()
  39. fooerView.frame = CGRect(x: 0, y: 0, width: kScreenWidth, height: 500)
  40. fooerView.backgroundColor = .white
  41. tableView.tableFooterView = fooerView
  42. let okBtn = UIButton.init()
  43. okBtn.frame = CGRect(x: kScreenWidth/2-75, y: 10, width: 150, height: 30)
  44. okBtn.layer.cornerRadius = 15
  45. okBtn.backgroundColor = .blue
  46. okBtn.addTarget(self, action: #selector(okBtnTouch(sender:)), for: .touchUpInside)
  47. fooerView.addSubview(okBtn)
  48. var num = 0
  49. let status = getIntValue(key: "status", dic: dicData)
  50. if status == 0 {
  51. fooerView.setSizeHeight(height: 180+45*3+100)
  52. okBtn.setTitle("去支付", for: .normal)
  53. okBtn.tag = 1001
  54. num = 3
  55. } else if status == 1 {
  56. fooerView.setSizeHeight(height: 110+45*6+100)
  57. okBtn.isHidden = true
  58. num = 6
  59. } else if status == 2 {
  60. fooerView.setSizeHeight(height: 180+45*8+300)
  61. okBtn.setTitle("确认收货", for: .normal)
  62. okBtn.tag = 1002
  63. num = 8
  64. } else if status == 3 {
  65. fooerView.setSizeHeight(height: 110+45*8+100)
  66. okBtn.isHidden = true
  67. num = 8
  68. }else if status == -1 {
  69. fooerView.isHidden = true
  70. okBtn.isHidden = true
  71. SVProgressHUD.showError(withStatus: "数据错误无法查看相关信息")
  72. // num = 8
  73. }
  74. fooerView.setSizeHeight(height: 900)
  75. tableView.contentSize = CGSize(width: kScreenWidth, height:CGFloat( 900+self.dataArray.count*101))
  76. okBtn.setLocationY(y: CGFloat(90+45*num+20+20))
  77. let lineLabel1 = UILabel.init()
  78. lineLabel1.frame = CGRect(x: 0, y: 0, width: Int(kScreenWidth), height: 10)
  79. lineLabel1.backgroundColor = UIColor.init(red: 242.0/255.0, green: 242/255.0, blue: 242/255.0, alpha: 1)
  80. fooerView.addSubview(lineLabel1)
  81. let lineLabel2 = UILabel.init()
  82. lineLabel2.frame = CGRect(x: 0, y: 100, width: Int(kScreenWidth), height: 10)
  83. lineLabel2.backgroundColor = UIColor.init(red: 242.0/255.0, green: 242/255.0, blue: 242/255.0, alpha: 1)
  84. fooerView.addSubview(lineLabel2)
  85. let addressView = UIView.init()
  86. addressView.frame = CGRect(x: 0, y: 10, width: kScreenWidth, height: 90)
  87. addressView.backgroundColor = .white
  88. fooerView.addSubview(addressView)
  89. let nameLabel = UILabel.init()
  90. nameLabel.frame = CGRect(x: 10, y: 10, width: 100, height: 30)
  91. nameLabel.text = getString(key: "linkname", dic: dicData)
  92. nameLabel.textAlignment = .left
  93. addressView.addSubview(nameLabel)
  94. let phoneLabel = UILabel.init()
  95. phoneLabel.frame = CGRect(x: kScreenWidth-150, y: 10, width: 140, height: 30)
  96. phoneLabel.text = getString(key: "linkphone", dic: dicData)
  97. phoneLabel.textAlignment = .right
  98. addressView.addSubview(phoneLabel)
  99. let addressTextView = UITextView.init()
  100. addressTextView.frame = CGRect(x: 15, y: 40, width: kScreenWidth-30, height: 40)
  101. addressTextView.text = getString(key: "linkaddress", dic: dicData)
  102. addressView.isUserInteractionEnabled = false
  103. addressTextView.textAlignment = .center
  104. addressTextView.font = UIFont.systemFont(ofSize: 14)
  105. addressView.addSubview(addressTextView)
  106. var height = 0
  107. if getIntValue(key: "delivery_type", dic: dicData) == 1 {
  108. height = 0
  109. addressView.isHidden = true
  110. lineLabel2.isHidden = true
  111. lineLabel1.isHidden = true
  112. // num = 6
  113. } else {
  114. height = 110
  115. lineLabel2.isHidden = false
  116. lineLabel1.isHidden = false
  117. }
  118. for i in 0..<num {
  119. let titleLabel = UILabel.init()
  120. titleLabel.frame = CGRect(x: 10, y: 45*i+height, width: 100, height: 45)
  121. titleLabel.textAlignment = .left
  122. titleLabel.text = self.arrTitle[i]
  123. fooerView.addSubview(titleLabel)
  124. let lineLabel = UILabel.init()
  125. lineLabel.frame = CGRect(x: 0, y: 45*i+45+height, width: Int(kScreenWidth), height: 1)
  126. lineLabel.backgroundColor = UIColor.init(red: 242.0/255.0, green: 242/255.0, blue: 242/255.0, alpha: 1)
  127. fooerView.addSubview(lineLabel)
  128. if i<7 {
  129. let titleLabel = UILabel.init()
  130. titleLabel.frame = CGRect(x: Int(kScreenWidth/2), y: 45*i+height, width: Int(kScreenWidth/2)-10, height: 45)
  131. titleLabel.textAlignment = .right
  132. if i == 5 {
  133. if getIntValue(key: arrText[i], dic: dicData) == 0 {
  134. titleLabel.text = "支付宝"
  135. } else {
  136. titleLabel.text = "微信"
  137. }
  138. } else if i == 6 {
  139. titleLabel.text = getString(key: arrText[i], dic: dicData)
  140. } else {
  141. titleLabel.text = "\(dicData[arrText[i]] as Any)"
  142. if getString(key: arrText[i], dic: dicData) == ""{
  143. titleLabel.text = "¥\(getDoubleValue(key: arrText[i], dic: dicData))"
  144. } else {
  145. titleLabel.text = getString(key: arrText[i], dic: dicData)
  146. }
  147. }
  148. fooerView.addSubview(titleLabel)
  149. } else {
  150. let btn = UIButton.init()//(dicData[arrText[i]] as!String
  151. btn.frame = CGRect(x: Int(kScreenWidth/2), y: 45*i+height, width: Int(kScreenWidth/2)-10, height: 45)
  152. btn.setTitle(getString(key: arrText[i], dic: dicData), for: .normal)
  153. btn.setTitleColor(.red, for: .normal)
  154. btn.addTarget(self, action: #selector(btnContentClick(btn:)), for: .touchUpInside)
  155. btn.contentHorizontalAlignment = .right
  156. fooerView.addSubview(btn)
  157. }
  158. }
  159. }
  160. @objc func okBtnTouch(sender: UIButton) {
  161. if sender.tag == 1001 {
  162. let vc = PayShoppingMallViewController()
  163. vc.orderId = dicData.getString(key: "id")
  164. vc.money = "\(String.init(format: "%.2f", dicData.getDouble(key: "freight")+dicData.getDouble(key: "total")))"
  165. self.toViewController(viewController: vc)
  166. } else {
  167. self.okreceive()
  168. }
  169. }
  170. func okreceive() {
  171. // updateProductOrderMainStatus
  172. let params = NSMutableDictionary()
  173. params.setValue(getString(key: "id", dic: dicData), forKey: "id")
  174. let http = AFHTTPSessionManager()
  175. http.post(RequestURL.updateProductOrderMainStatus, parameters: params, progress: { (_) in
  176. }, success: { (operation, json) in
  177. print(json as Any)
  178. let success = (json as! NSDictionary).object(forKey: "statusCode") as! Int
  179. if success == 200 {
  180. SVProgressHUD.showSuccess(withStatus: "确认收货成功")
  181. }
  182. }) { (_, _) in
  183. }
  184. }
  185. // MARK: TABLEVLEW 实现
  186. func numberOfSections(in tableView: UITableView) -> Int {
  187. return 1
  188. }
  189. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  190. return self.dataArray.count
  191. }
  192. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  193. return 101
  194. }
  195. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  196. let cell = tableView.dequeueReusableCell(withIdentifier: "MyOrderTableViewCell", for: indexPath as IndexPath) as! MyOrderTableViewCell
  197. cell.selectionStyle = .none
  198. let dic = self.dataArray[indexPath.row]as!NSDictionary
  199. cell.initCell(rowIndex: indexPath.row, dic: dic)
  200. return cell
  201. // return cell
  202. }
  203. @objc func btnContentClick(btn: UIButton) {
  204. let vc = CommonWebViewViewController()
  205. vc.strTitle = "快递详情"
  206. vc.url = "https://m.kuaidi100.com/result.jsp?nu=\(self.dicData["courier_code"]as!String)"
  207. toViewController(viewController: vc)
  208. }
  209. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  210. let view = ShoppingMallDetailViewController()
  211. let dic = self.dataArray[indexPath.row]as!NSDictionary
  212. view.id = dic.getString(key: "product_id")
  213. self.navigationController?.pushViewController(view, animated: true)
  214. }
  215. /*
  216. // MARK: - Navigation
  217. // In a storyboard-based application, you will often want to do a little preparation before navigation
  218. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  219. // Get the new view controller using segue.destination.
  220. // Pass the selected object to the new view controller.
  221. }
  222. */
  223. override func viewWillAppear(_ animated: Bool) {
  224. super.viewWillAppear(animated)
  225. loadData()
  226. }
  227. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  228. super.init(nibName: "MyOrderDtialViewController", bundle: nil)
  229. }
  230. required init?(coder aDecoder: NSCoder) {
  231. fatalError("init(coder:) has not been implemented")
  232. }
  233. }