MyOrderListTableViewCell.swift 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. //
  2. // MyOrderListTableViewCell.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 MyOrderListTableViewCell: UITableViewCell {
  10. @IBOutlet weak var btn1: UIButton!
  11. @IBOutlet weak var btn2: UIButton!
  12. @IBOutlet weak var btn3: UIButton!
  13. @IBOutlet weak var totalLabel: UILabel!
  14. @IBOutlet weak var stateLabel: UILabel!
  15. @IBOutlet weak var nameText: UITextView!
  16. override func awakeFromNib() {
  17. super.awakeFromNib()
  18. // Initialization code
  19. }
  20. func initCell(rowIndex: Int, dic: NSDictionary) {
  21. totalLabel.text = "合计:\(getDoubleValue(dic: dic, key: "total"))元"
  22. if dic.getInt(key: "status") == 0 {
  23. stateLabel.text = "未支付"
  24. } else if dic.getInt(key: "status") == 1 {
  25. stateLabel.text = "待发货"
  26. } else if dic.getInt(key: "status") == 2 {
  27. stateLabel.text = "已发货"
  28. } else if dic.getInt(key: "status") == 3 {
  29. stateLabel.text = "已收货"
  30. }
  31. btn1.isHidden = true
  32. btn2.isHidden = true
  33. btn3.isHidden = true
  34. let array = dic["productOrderlist"]as!NSArray
  35. for i in 0..<array.count {
  36. if i >= 3 {
  37. } else {
  38. let dict = array[i]as!NSDictionary
  39. let imageBtn = UIButton.init()
  40. imageBtn.frame = CGRect(x: 10+90*i, y: 10, width: 80, height: 80)
  41. imageBtn.tag = 100+i
  42. imageBtn.setTitle("\(i)", for: .normal)
  43. imageBtn.titleLabel?.isHidden = true
  44. imageBtn.sd_setImage(with: NSURL.init(string: dict["image"]as!String) as URL?, for: .normal)
  45. self.addSubview(imageBtn)
  46. if i==0 {
  47. nameText.isHidden = false
  48. nameText.text = dict.getString(key: "name")
  49. btn1 = imageBtn
  50. btn1.isHidden = false
  51. }else if i==1{
  52. btn1.isHidden = false
  53. nameText.isHidden = true
  54. btn2 = imageBtn
  55. }else if i==2{
  56. nameText.isHidden = true
  57. btn3 = imageBtn
  58. btn1.isHidden = false
  59. }
  60. }
  61. }
  62. }
  63. override func setSelected(_ selected: Bool, animated: Bool) {
  64. super.setSelected(selected, animated: animated)
  65. // Configure the view for the selected state
  66. }
  67. }