TiXianDetailViewController.swift 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. //
  2. // TiXianDetailViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/4/21.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class TiXianDetailViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate, SDPhotoBrowserDelegate {
  10. var id = ""
  11. @IBOutlet weak var tableView: UITableView!
  12. var arrTitle = [["状态", "拒绝原因", "提现金额","应到账金额", "提现时间"], ["开户名", "银行卡号", "所属银行", "所属支行"], ["发票照片"], ["快递公司", "快递号"]]
  13. var arrContent = [["状态", "拒绝原因", "提现金额","应到账金额", "提现时间"], ["开户名", "银行卡号", "所属银行", "所属支行"], ["http://t8.baidu.com/it/u=3660968530,985748925&fm=191&app=48&size=h300&n=0&g=4n&f=JPEG?sec=1853310920&t=5e64af964be378c6c2a3b0acc65dfe24"], ["快递公司", "快递号"]]
  14. override func viewDidLoad() {
  15. super.viewDidLoad()
  16. self.title = "提现详情"
  17. initNavLeftBackButton()
  18. let status = getIntValue(key: "status")
  19. if status == 3 {
  20. arrTitle = [["状态", "拒绝原因", "提现金额","应到账金额", "提现时间"], ["开户名", "银行卡号", "所属银行", "所属支行"], ["发票照片"], ["快递公司", "快递号"]]
  21. arrContent[0] = ["", getString(key: "remark"), "\(getDoubleValue(key: "amount_money"))","\(getDoubleValue(key: "realy_amount"))", getString(key: "createtime")]
  22. } else {
  23. arrTitle = [["状态", "提现金额","应到账金额", "提现时间"], ["开户名", "银行卡号", "所属银行", "所属支行"], ["发票照片"], ["快递公司", "快递号"]]
  24. arrContent[0] = ["", "\(getDoubleValue(key: "amount_money"))","\(getDoubleValue(key: "realy_amount"))", getString(key: "createtime")]
  25. }
  26. arrContent[1] = [getString(key: "bank_account_name"), getString(key: "bank_card_num"), getString(key: "bank_name"), getString(key: "bank_sub_branch")]
  27. arrContent[2] = [getString(key: "invoice_photo")]
  28. arrContent[3] = [getString(key: "express_name"), getString(key: "express_number")]
  29. tableView.register(UINib(nibName: "TiXianDetailTableViewCell", bundle: nil), forCellReuseIdentifier: "TiXianDetailTableViewCell")
  30. tableView.delegate = self
  31. tableView.dataSource = self
  32. tableView.separatorStyle = .none
  33. tableView.showsVerticalScrollIndicator = false
  34. tableView.estimatedRowHeight = 100
  35. tableView.reloadData()
  36. }
  37. // MARK: TABLEVLEW 实现
  38. func numberOfSections(in tableView: UITableView) -> Int {
  39. return self.arrTitle.count
  40. }
  41. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  42. return self.arrTitle[section].count
  43. }
  44. func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  45. return 10
  46. }
  47. func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
  48. let view = UIView(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: 10))
  49. view.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xf7f7f9, alpha: 1.0)
  50. return view
  51. }
  52. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  53. if arrTitle[indexPath.section][indexPath.row] == "发票照片" {
  54. return 87
  55. } else {
  56. return 55
  57. }
  58. }
  59. var imgTemp: UIImageView!
  60. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  61. let cell = tableView.dequeueReusableCell(withIdentifier: "TiXianDetailTableViewCell", for: indexPath as IndexPath) as! TiXianDetailTableViewCell
  62. cell.lblTitle.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x666666, alpha: 1.0)
  63. cell.lblTitle.text = arrTitle[indexPath.section][indexPath.row]
  64. if arrTitle[indexPath.section][indexPath.row] == "发票照片" {
  65. cell.btnImage.addTarget(self, action: #selector(centerBtnAction), for: .touchUpInside)
  66. cell.btnImage.isHidden = false
  67. imgTemp = cell.imgRight
  68. cell.imgRight.isHidden = false
  69. cell.lblContent.isHidden = true
  70. cell.imgRight.loadImage(imgUrl: arrContent[indexPath.section][indexPath.row], defaultImage: "")
  71. cell.imgRight.setCornerRadius(size: 4)
  72. } else {
  73. cell.btnImage.isHidden = true
  74. cell.imgRight.isHidden = true
  75. cell.lblContent.isHidden = false
  76. cell.lblContent.text = arrContent[indexPath.section][indexPath.row]
  77. if arrTitle[indexPath.section][indexPath.row] == "状态" {
  78. let status = getIntValue(key: "status")
  79. if status == 0 {
  80. cell.lblContent.text = "待审核"
  81. cell.lblContent.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x999999, alpha: 1.0)
  82. } else if status == 1 {
  83. cell.lblContent.text = "待打款"
  84. cell.lblContent.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xfc9005, alpha: 1.0)
  85. } else if status == 2 {
  86. cell.lblContent.text = "已打款"
  87. cell.lblContent.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x16b006, alpha: 1.0)
  88. } else if status == 3 {
  89. cell.lblContent.text = "未通过"
  90. cell.lblContent.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xff0000, alpha: 1.0)
  91. }
  92. }
  93. }
  94. return cell
  95. }
  96. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  97. // let view = UIViewController()
  98. // view.oneGoId = self.arrData[indexPath.row]["ItemId"] as! Int
  99. // self.navigationController?.pushViewController(view, animated: true)
  100. }
  101. @IBAction func centerBtnAction(sender: UIButton) {
  102. let sd = SDPhotoBrowser()
  103. sd.tag = 0
  104. viewTopImage = sender.superview!
  105. arrImagePaths.removeAll()
  106. arrImagePaths.append(getString(key: "invoice_photo"))
  107. sd.sourceImagesContainerView = viewTopImage
  108. sd.imageCount = arrImagePaths.count
  109. sd.currentImageIndex = 0
  110. sd.delegate = self
  111. sd.show()
  112. }
  113. var viewTopImage = UIView()
  114. var arrImagePaths = [String]()
  115. // MARK: 图片
  116. func photoBrowser(_ browser: SDPhotoBrowser!, placeholderImageFor index: Int) -> UIImage! {
  117. return imgTemp.image!
  118. }
  119. func photoBrowser(_ browser: SDPhotoBrowser!, highQualityImageURLFor index: Int) -> URL! {
  120. return URL(string: arrImagePaths[index])
  121. }
  122. func photoBrowser(_ browser: SDPhotoBrowser!, select index: Int) {
  123. }
  124. override func viewWillAppear(_ animated: Bool) {
  125. super.viewWillAppear(animated)
  126. }
  127. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  128. super.init(nibName: "TiXianDetailViewController", bundle: nil)
  129. }
  130. required init?(coder aDecoder: NSCoder) {
  131. fatalError("init(coder:) has not been implemented")
  132. }
  133. }