|
@@ -15,6 +15,7 @@
|
|
|
|
|
|
namespace app\admin\controller;
|
|
|
|
|
|
+use ClassesWithParents\D;
|
|
|
use think\admin\Controller;
|
|
|
|
|
|
use think\facade\Db;
|
|
@@ -31,7 +32,7 @@ class School extends Controller
|
|
|
* 绑定数据表
|
|
|
* @var string
|
|
|
*/
|
|
|
- private $table = 'School2';
|
|
|
+ private $table = 'school2';
|
|
|
|
|
|
/**
|
|
|
* 学校管理
|
|
@@ -157,12 +158,75 @@ class School extends Controller
|
|
|
*/
|
|
|
public function student()
|
|
|
{
|
|
|
- $this->title = '学生管理';
|
|
|
- $query = $this->_query('students')->where('school_id',$this->request->get('id'));
|
|
|
+ $school_id = $this->request->get('id');
|
|
|
+ $this->title = Db::table($this->table)->where('id',$school_id)->value('name').'--学生管理';
|
|
|
+ $query = $this->_query('students')->where('school_id',$school_id);
|
|
|
$query->like('name,sex,id_card,student_number,grade,class');
|
|
|
// 列表排序并显示
|
|
|
$query->page();
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 学生管理数据列表处理
|
|
|
+ * @param array $data
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
+ * @throws \think\exception\DbException
|
|
|
+ */
|
|
|
+ protected function _student_page_filter(&$data)
|
|
|
+ {
|
|
|
+ $school_id = $this->request->get('id');
|
|
|
+ $grade1 = array(''=>'全部');
|
|
|
+ $grade2 = [];
|
|
|
+ $grade = Db::name('students')
|
|
|
+ ->where('school_id',$school_id)
|
|
|
+ ->group('grade')
|
|
|
+ ->column('grade');
|
|
|
+ foreach ($grade as &$v){
|
|
|
+ $grade2[$v] = $v;
|
|
|
+ }
|
|
|
+ $grade = array_merge($grade1,$grade2);
|
|
|
+ $this->grade = $grade;
|
|
|
+
|
|
|
+
|
|
|
+ $get_grade = '';
|
|
|
+ if (isset($_GET['grade']) && $_GET['grade']){
|
|
|
+ $get_grade = mb_substr($_GET['grade'],2);
|
|
|
+ }
|
|
|
+ $class1 = array(''=>'全部');
|
|
|
+ $class2 = [];
|
|
|
+ $class = Db::name('students')
|
|
|
+ ->where('school_id',$school_id)
|
|
|
+ ->when($get_grade,function ($query) use ($get_grade){
|
|
|
+ if ($get_grade){
|
|
|
+ $query->whereLike('class',$get_grade.'%');
|
|
|
+ }
|
|
|
+ })
|
|
|
+ ->group('class')
|
|
|
+ ->column('class');
|
|
|
+ foreach ($class as &$v){
|
|
|
+ $class2[$v] = $v;
|
|
|
+ }
|
|
|
+ $class = array_merge($class1,$class2);
|
|
|
+ $this->class = $class;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 教师管理
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
+ * @throws \think\db\exception\DbException
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
+ */
|
|
|
+ public function teacher()
|
|
|
+ {
|
|
|
+ $school_id = $this->request->get('id');
|
|
|
+ $this->title = Db::table($this->table)->where('id',$school_id)->value('name').'--教师管理';
|
|
|
+ $query = $this->_query('teacher');
|
|
|
+ $query->like('name');
|
|
|
+ // 列表排序并显示
|
|
|
+ $query->where('school_id',$school_id)->page();
|
|
|
+ }
|
|
|
|
|
|
}
|