IntegralBillViewController.swift 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. //
  2. // ApplyCardBillViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/7/16.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class IntegralBillViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. @IBOutlet weak var lblCount1: UILabel!
  11. @IBOutlet weak var lblCount2: UILabel!
  12. @IBOutlet weak var lblCount3: UILabel!
  13. @IBOutlet weak var lblCount4: UILabel!
  14. @IBOutlet weak var tableView: UITableView!
  15. //【积分】0:下单、1:交易中、2:交易失败(3:面值不符)、4:交易成功
  16. var type = 0
  17. override func viewDidLoad() {
  18. super.viewDidLoad()
  19. tableView.register(UINib(nibName: "IntegralBillTableViewCell", bundle: nil), forCellReuseIdentifier: "IntegralBillTableViewCell")
  20. tableView.delegate = self
  21. tableView.dataSource = self
  22. tableView.separatorStyle = .none
  23. tableView.showsVerticalScrollIndicator = false
  24. tableView.estimatedRowHeight = 100
  25. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  26. self!.currentPage = 1
  27. self!.loadData()
  28. })
  29. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  30. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  31. self!.currentPage += 1
  32. self!.loadData()
  33. })
  34. loadCount()
  35. // Do any additional setup after loading the view.
  36. }
  37. //btnAddTarget(view: self.view, selector: #selector(self.btnMenuClick))
  38. @IBAction func btnMenuClick(_ sender: AnyObject) {
  39. switch (sender as! UIButton).tag {
  40. case 1001: // 待确认
  41. type = 0
  42. lblCount1.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xFF680B, alpha: 1.0)
  43. lblCount2.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  44. lblCount3.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  45. lblCount4.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  46. self.currentPage = 1
  47. loadData()
  48. break
  49. case 1002: // 待审核
  50. type = 1
  51. lblCount1.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  52. lblCount2.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xFF680B, alpha: 1.0)
  53. lblCount3.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  54. lblCount4.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  55. self.currentPage = 1
  56. loadData()
  57. break
  58. case 1003: // 申请成功
  59. type = 4
  60. lblCount1.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  61. lblCount2.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  62. lblCount3.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xFF680B, alpha: 1.0)
  63. lblCount4.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  64. self.currentPage = 1
  65. loadData()
  66. break
  67. case 1004: // 关闭
  68. type = 2
  69. lblCount1.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  70. lblCount2.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  71. lblCount3.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  72. lblCount4.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xFF680B, alpha: 1.0)
  73. self.currentPage = 1
  74. loadData()
  75. break
  76. case 1005: //
  77. break
  78. case 1006: //
  79. break
  80. default:
  81. break
  82. }
  83. }
  84. // MARK: =============加载数据===============
  85. func loadData() {
  86. let url = RequestURL.scorePageList
  87. let params = NSMutableDictionary()
  88. params.setValue(type, forKey: "type")
  89. loadDataList(url: url, params: params, tableView: self.tableView, tag: 1001)
  90. }
  91. func loadCount() {
  92. let url = RequestURL.scoreNum
  93. let params = NSMutableDictionary()
  94. params.setValue(type, forKey: "type")
  95. loadDataInfo(url: url, params: params, tag: 1002)
  96. }
  97. override func returnData(tag: Int) {
  98. if tag == 1001 {
  99. tableView.reloadData()
  100. } else if tag == 1002 {
  101. self.loadData()
  102. lblCount1.text = "(\(getIntValue(key: "status0")))"
  103. lblCount2.text = "(\(getIntValue(key: "status1")))"
  104. lblCount3.text = "(\(getIntValue(key: "status3")))"
  105. lblCount4.text = "(\(getIntValue(key: "status2")))"
  106. }
  107. }
  108. override func returnError(tag: Int, type: String) {
  109. if tag == 1002 {
  110. self.loadData()
  111. }
  112. }
  113. // MARK: TABLEVLEW 实现
  114. func numberOfSections(in tableView: UITableView) -> Int {
  115. return 1
  116. }
  117. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  118. return self.arrData.count
  119. }
  120. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  121. if type == 2 {
  122. return 132
  123. } else {
  124. return 105
  125. }
  126. }
  127. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  128. let cell = tableView.dequeueReusableCell(withIdentifier: "IntegralBillTableViewCell", for: indexPath as IndexPath) as! IntegralBillTableViewCell
  129. cell.lblTitle.text = getString(current: indexPath.row, key: "brand_name")
  130. cell.lblDate.text = getString(current: indexPath.row, key: "createtime")
  131. cell.lblJF.text = getString(current: indexPath.row, key: "point")
  132. cell.lblMoney.text = getString(current: indexPath.row, key: "user_price")
  133. if type == 2 {
  134. cell.lblError.isHidden = false
  135. cell.lblError.text = "原因:\(getString(current: indexPath.row, key: "refuse"))"
  136. } else {
  137. cell.lblError.isHidden = true
  138. }
  139. return cell
  140. }
  141. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  142. // let view = UIViewController()
  143. // view.oneGoId = self.arrData[indexPath.row]["ItemId"] as! Int
  144. // self.navigationController?.pushViewController(view, animated: true)
  145. }
  146. override func viewWillAppear(_ animated: Bool) {
  147. super.viewWillAppear(animated)
  148. self.tabBarController?.title = self.title
  149. }
  150. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  151. super.init(nibName: "IntegralBillViewController", bundle: nil)
  152. }
  153. required init?(coder aDecoder: NSCoder) {
  154. fatalError("init(coder:) has not been implemented")
  155. }
  156. }