//
|
// LinesOfCreditListVC.swift
|
// OKProject
|
//
|
// Created by 无故事王国 on 2023/4/10.
|
// Copyright © 2023 yangwang. All rights reserved.
|
//
|
|
import UIKit
|
|
class LinesOfCreditListVC: YYTableViewController {
|
|
override func viewDidLoad() {
|
super.viewDidLoad()
|
title = "额度申请"
|
tableView.delegate = self
|
tableView.dataSource = self
|
tableView.separatorStyle = .none
|
tableView.register(UINib(nibName: "LineOfCredictTCell", bundle: nil), forCellReuseIdentifier: "_LineOfCredictTCell")
|
}
|
}
|
|
extension LinesOfCreditListVC:UITableViewDelegate{
|
|
}
|
|
extension LinesOfCreditListVC:UITableViewDataSource{
|
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
|
return 10
|
}
|
|
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
|
let cell = tableView.dequeueReusableCell(withIdentifier: "_LineOfCredictTCell") as! LineOfCredictTCell
|
cell.backgroundColor = .clear
|
return cell
|
}
|
}
|