ApplyCardAccountViewController.swift 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. //
  2. // ApplyCardAccountViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/4/26.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class ApplyCardAccountViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. @IBOutlet weak var btnQuery: UIButton!
  11. @IBOutlet weak var btnEnd: UIButton!
  12. @IBOutlet weak var btnStart: UIButton!
  13. @IBOutlet weak var lblMoney: UILabel!
  14. @IBOutlet weak var view2: UIView!
  15. @IBOutlet weak var tableView: UITableView!
  16. @IBOutlet weak var viewTop: UIView!
  17. override func viewDidLoad() {
  18. super.viewDidLoad()
  19. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  20. viewNav.initView(title: "我的账户") {[weak self] (index, _) in
  21. if index == 0 {
  22. self!.handleBack()
  23. }
  24. }
  25. self.view.addSubview(viewNav)
  26. viewNav.marginTop(top: 0)
  27. viewTop.setSizeWidth(width: ScreenWidth)
  28. viewTop.setSizeHeight(height: viewNav.bottom() + 90)
  29. view2.marginTop(top: 0, view: viewTop)
  30. tableView.marginTop(top: 0, view: view2)
  31. tableView.setSizeHeight(height: ScreenHeight - common_bottom_height - view2.bottom())
  32. btnStart.setSizeWidth(width: (ScreenWidth - 36 - 47) / 2)
  33. btnEnd.setSizeWidth(width: (ScreenWidth - 36 - 47) / 2)
  34. btnStart.marginLeft(left: 10)
  35. btnEnd.marginLeft(left: 8, view: btnStart)
  36. btnQuery.marginLeft(left: 8, view: btnEnd)
  37. btnStart.setCornerRadius(size: 2)
  38. btnEnd.setCornerRadius(size: 2)
  39. tableView.register(UINib(nibName: "ApplyCardAccountTableViewCell", bundle: nil), forCellReuseIdentifier: "ApplyCardAccountTableViewCell")
  40. tableView.delegate = self
  41. tableView.dataSource = self
  42. tableView.separatorStyle = .none
  43. tableView.showsVerticalScrollIndicator = false
  44. tableView.estimatedRowHeight = 100
  45. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  46. self!.currentPage = 1
  47. self!.loadData()
  48. })
  49. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  50. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  51. self!.currentPage += 1
  52. self!.loadData()
  53. })
  54. }
  55. let arrTitle = ["建设银行", "中国银行", "农业银行", "工商银行", "招商银行", "农商银行"]
  56. let arrContent = ["12", "5", "23", "8", "6", "15"]
  57. // MARK: =============加载数据===============
  58. func loadData() {
  59. tableView.mj_header?.endRefreshing()
  60. tableView.mj_footer?.endRefreshing()
  61. returnData(tag: 1001)
  62. // let url = RequestURL.bookList;
  63. // let params = NSMutableDictionary()
  64. // params.setValue("", forKey: "subjectId")
  65. // params.setValue("", forKey: "showTimeSort")
  66. // params.setValue("", forKey: "priceSort")
  67. // loadDataList(url: url, params: params, tableView: self.tableView,tag:1001)
  68. }
  69. override func returnData(tag: Int) {
  70. if tag == 1001 {
  71. tableView.reloadData()
  72. }
  73. }
  74. override func returnError(tag: Int, type: String) {
  75. }
  76. // MARK: TABLEVLEW 实现
  77. // MARK: TABLEVLEW 实现
  78. func numberOfSections(in tableView: UITableView) -> Int {
  79. return 1
  80. }
  81. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  82. return self.arrTitle.count
  83. }
  84. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  85. return 55
  86. }
  87. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  88. let cell = tableView.dequeueReusableCell(withIdentifier: "ApplyCardAccountTableViewCell", for: indexPath as IndexPath) as! ApplyCardAccountTableViewCell
  89. //cell.lblTitle.text = getString(indexPath.row, key: "Name")
  90. cell.lblName.text = arrTitle[indexPath.row]
  91. cell.lblCount.text = arrContent[indexPath.row]
  92. return cell
  93. }
  94. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  95. // let view = UIViewController()
  96. // view.oneGoId = self.arrData[indexPath.row]["ItemId"] as! Int
  97. // self.navigationController?.pushViewController(view, animated: true)
  98. }
  99. override func viewWillAppear(_ animated: Bool) {
  100. super.viewWillAppear(animated)
  101. appDelegate.setNavigationBarHidden(isHidden: true)
  102. }
  103. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  104. super.init(nibName: "ApplyCardAccountViewController", bundle: nil)
  105. }
  106. required init?(coder aDecoder: NSCoder) {
  107. fatalError("init(coder:) has not been implemented")
  108. }
  109. }