|
@@ -148,4 +148,21 @@ class School extends Controller
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 学生管理
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
+ * @throws \think\db\exception\DbException
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
+ */
|
|
|
+ public function student()
|
|
|
+ {
|
|
|
+ $this->title = '学生管理';
|
|
|
+ $query = $this->_query('students')->where('school_id',$this->request->get('id'));
|
|
|
+ $query->like('name,sex,id_card,student_number,grade,class');
|
|
|
+ // 列表排序并显示
|
|
|
+ $query->page();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|