ApplyCardBillViewController.swift 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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 ApplyCardBillViewController: 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. ///类型 1:新建订单,2:待激活, 3: 申请成功 4: 关闭
  16. var type = 1
  17. override func viewDidLoad() {
  18. super.viewDidLoad()
  19. tableView.register(UINib(nibName: "ApplyCardBillTableViewCell", bundle: nil), forCellReuseIdentifier: "ApplyCardBillTableViewCell")
  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. self.loadCount()
  35. }
  36. //btnAddTarget(view: self.view, selector: #selector(self.btnMenuClick))
  37. @IBAction func btnMenuClick(_ sender: AnyObject) {
  38. switch (sender as! UIButton).tag {
  39. case 1001: // 待确认
  40. type = 1
  41. lblCount1.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xFF680B, alpha: 1.0)
  42. lblCount2.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  43. lblCount3.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  44. lblCount4.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  45. self.currentPage = 1
  46. loadData()
  47. break
  48. case 1002: // 待审核
  49. type = 2
  50. lblCount1.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  51. lblCount2.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xFF680B, alpha: 1.0)
  52. lblCount3.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  53. lblCount4.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  54. self.currentPage = 1
  55. loadData()
  56. break
  57. case 1003: // 申请成功
  58. type = 3
  59. lblCount1.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  60. lblCount2.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  61. lblCount3.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xFF680B, alpha: 1.0)
  62. lblCount4.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  63. self.currentPage = 1
  64. loadData()
  65. break
  66. case 1004: // 关闭
  67. type = 4
  68. lblCount1.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  69. lblCount2.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  70. lblCount3.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x545454, alpha: 1.0)
  71. lblCount4.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xFF680B, alpha: 1.0)
  72. self.currentPage = 1
  73. loadData()
  74. break
  75. case 1005: //
  76. break
  77. case 1006: //
  78. break
  79. default:
  80. break
  81. }
  82. }
  83. // MARK: =============加载数据===============
  84. func loadData() {
  85. let url = RequestURL.creditCardPageList
  86. let params = NSMutableDictionary()
  87. params.setValue(type, forKey: "type")
  88. loadDataList(url: url, params: params, tableView: self.tableView, tag: 1001)
  89. }
  90. func loadCount() {
  91. let url = RequestURL.creditNum
  92. let params = NSMutableDictionary()
  93. params.setValue(type, forKey: "type")
  94. loadDataInfo(url: url, params: params, tag: 1002)
  95. }
  96. override func returnData(tag: Int) {
  97. if tag == 1001 {
  98. tableView.reloadData()
  99. } else if tag == 1002 {
  100. self.loadData()
  101. lblCount1.text = "(\(getIntValue(key: "status1")))"
  102. lblCount2.text = "(\(getIntValue(key: "status2")))"
  103. lblCount3.text = "(\(getIntValue(key: "status3")))"
  104. lblCount4.text = "(\(getIntValue(key: "status4")))"
  105. }
  106. }
  107. override func returnError(tag: Int, type: String) {
  108. if tag == 1002 {
  109. self.loadData()
  110. }
  111. }
  112. // MARK: TABLEVLEW 实现
  113. func numberOfSections(in tableView: UITableView) -> Int {
  114. return 1
  115. }
  116. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  117. return self.arrData.count
  118. }
  119. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  120. return 100
  121. }
  122. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  123. let cell = tableView.dequeueReusableCell(withIdentifier: "ApplyCardBillTableViewCell", for: indexPath as IndexPath) as! ApplyCardBillTableViewCell
  124. cell.lblCard.text = CommonValue.formatCardNum(str: getString(current: indexPath.row, key: "identity_id"))
  125. cell.lblDate.text = getString(current: indexPath.row, key: "createtime")
  126. cell.lblPhone.text = CommonValue.formatPhone(phone: getString(current: indexPath.row, key: "phone"))
  127. cell.lblCardName.text = getString(current: indexPath.row, key: "bank_name")
  128. cell.lblApplyName.text = "申请人:\(getString(current: indexPath.row, key: "name"))"
  129. cell.btnQuery.tag = indexPath.row
  130. cell.btnQuery.addTarget(self, action: #selector(btnQueryClick), for: .touchUpInside)
  131. return cell
  132. }
  133. @objc func btnQueryClick(btn: UIButton) {
  134. UIApplication.shared.openURL(URL(string: "http://card-dev.qdrsd.top/#/progress")!)
  135. }
  136. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  137. // let view = UIViewController()
  138. // view.oneGoId = self.arrData[indexPath.row]["ItemId"] as! Int
  139. // self.navigationController?.pushViewController(view, animated: true)
  140. }
  141. override func viewWillAppear(_ animated: Bool) {
  142. super.viewWillAppear(animated)
  143. self.tabBarController?.title = self.title
  144. }
  145. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  146. super.init(nibName: "ApplyCardBillViewController", bundle: nil)
  147. }
  148. required init?(coder aDecoder: NSCoder) {
  149. fatalError("init(coder:) has not been implemented")
  150. }
  151. }