| | |
| | | tableView.delegate = self |
| | | tableView.dataSource = self |
| | | tableView.separatorStyle = .none |
| | | tableView.showsVerticalScrollIndicator = false |
| | | tableView.showsHorizontalScrollIndicator = false |
| | | tableView.register(UINib(nibName: "StudentInfo_3_TCell", bundle: nil), forCellReuseIdentifier: "_StudentInfo_3_TCell") |
| | | // tableView.jq_setEmptyView() |
| | | } |
| | |
| | | } |
| | | |
| | | @IBAction func addStudentAction(_ sender: UIButton) { |
| | | let studentVC = AddStudentVC(type: .course,studentInfo: nil) |
| | | let studentVC = AddStudentVC(type: .course,studentInfo: nil,identity:true) |
| | | push(vc: studentVC) |
| | | } |
| | | |