123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- //
- // ProfitListViewController.swift
- // xingchuangke
- //
- // Created by Virgil on 2019/7/16.
- // Copyright © 2019 Virgil. All rights reserved.
- //
- import UIKit
- class ProfitListViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
- ///0:办卡 1:兑换
- var type = 0
- @IBOutlet weak var tableView: UITableView!
- override func viewDidLoad() {
- super.viewDidLoad()
- self.title = type == 0 ? "推荐办卡收益" : "积分兑换收益"
- initNavLeftBackButton()
- tableView.register(UINib(nibName: "ProfitListTableViewCell", bundle: nil), forCellReuseIdentifier: "ProfitListTableViewCell")
- tableView.delegate = self
- tableView.dataSource = self
- tableView.separatorStyle = .none
- tableView.showsVerticalScrollIndicator = false
- tableView.estimatedRowHeight = 100
- tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
- self!.currentPage = 1
- self!.loadData()
- })
- tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
- tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
- self!.currentPage += 1
- self!.loadData()
- })
- loadData()
- }
- // MARK: =============加载数据===============
- func loadData() {
- let url = RequestURL.creditScoreListPage
- let params = NSMutableDictionary()
- params.setValue(type, forKey: "type")
- loadDataList(url: url, params: params, tableView: self.tableView, tag: 1001)
- }
- override func returnData(tag: Int) {
- if tag == 1001 {
- tableView.reloadData()
- }
- }
- override func returnError(tag: Int, type: String) {
- }
- // MARK: TABLEVLEW 实现
- func numberOfSections(in tableView: UITableView) -> Int {
- return 1
- }
- func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
- return self.arrData.count
- }
- func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
- return 70
- }
- func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
- let cell = tableView.dequeueReusableCell(withIdentifier: "ProfitListTableViewCell", for: indexPath as IndexPath) as! ProfitListTableViewCell
- cell.lblTitle.text = getString(current: indexPath.row, key: "name")
- cell.lblDate.text = getString(current: indexPath.row, key: "createtime")
- cell.lblMoney.text = "+\(getDoubleValue(current: indexPath.row, key: "wallet_amount", defaultValue: 0.00))"
- return cell
- }
- func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
- let view = ProfitDetailViewController()
- view.id = getString(current: indexPath.row, key: "id")
- self.navigationController?.pushViewController(view, animated: true)
- }
- override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
- }
- override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
- super.init(nibName: "ProfitListViewController", bundle: nil)
- }
- required init?(coder aDecoder: NSCoder) {
- fatalError("init(coder:) has not been implemented")
- }
- }
|