//
|
// StudentRemarkListVC.swift
|
// WanPai
|
//
|
// Created by 无故事王国 on 2023/6/27.
|
//
|
|
import UIKit
|
|
class StudentRemarkListVC: BaseVC {
|
|
lazy private var tableView:UITableView = {
|
let table = UITableView(frame: .zero, style: .plain)
|
table.separatorStyle = .none
|
table.delegate = self
|
table.dataSource = self
|
table.register(UINib(nibName: "StudentRemarkTCell", bundle: nil), forCellReuseIdentifier: "_StudentRemarkTCell")
|
return table
|
}()
|
|
override func viewDidLoad() {
|
super.viewDidLoad()
|
title = "学员评语"
|
}
|
|
override func setUI() {
|
view.addSubview(tableView)
|
tableView.snp.makeConstraints { make in
|
make.edges.equalToSuperview()
|
}
|
}
|
}
|
|
extension StudentRemarkListVC:UITableViewDelegate{}
|
|
extension StudentRemarkListVC:UITableViewDataSource{
|
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
|
return 10
|
}
|
|
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
|
let cell = tableView.dequeueReusableCell(withIdentifier: "_StudentRemarkTCell") as! StudentRemarkTCell
|
return cell
|
}
|
}
|