123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: https://thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\admin\controller;
- use ClassesWithParents\D;
- use think\admin\Controller;
- use think\facade\Db;
- /**
- * 学校管理
- * Class User
- * @package app\admin\controller
- */
- class School extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- private $table = 'school2';
- /**
- * 学校管理
- * @auth true
- * @menu true
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function index()
- {
- $this->title = '学校信息管理';
- $query = $this->_query($this->table)->where('is_deleted',0)->like('name')->equal('school_code,office_phone,type,county_id');
- $query->order('id desc')->page();
- }
- /**
- * 数据列表处理
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function _index_page_filter(&$data)
- {
- foreach ($data as &$value){
- }
- $this->type_arr = array('1'=>'幼儿园','2'=>'小学','3'=>'初中','4'=>'高中','5'=>'特教','6'=>'工读','7'=>'中职');
- $this->county_list = $this->app->db->name('county_list')->column('name','id');
- }
- protected function _form_filter(&$data){
- if($this->request->isGet()) {
- $this->data = $data;
- }elseif ($this->request->isPost()){
- if (isset($data['id']) && $data['id'] > 0) {
- $is_set = $this->app->db->name('school2')->where('username',$data['username'])->where('id','<>',$data['id'])->find();
- if($is_set){
- $this->error('不能设置重复的账号');
- }
- $data['password'] = md5($data['visible_password']);
- }
- }
- }
- /**
- * 编辑学校
- * @auth true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function edit()
- {
- $this->title = '编辑';
- $this->_form($this->table, 'form');
- }
- /**
- * 删除学校
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function remove()
- {
- $this->_save($this->table, ['is_deleted' => '1']);
- }
- /**
- * 禁用学校
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function forbid()
- {
- $this->_save($this->table, ['status' => '0']);
- }
- /**
- * 启用学校
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function resume()
- {
- $this->_save($this->table, ['status' => '1']);
- }
- /**
- * 详情
- * @auth true
- */
- public function info()
- {
- $id = $this->request->get('id');
- $name = Db::name($this->table)->where('id',$id)->value('name');
- $this->title = $name;
- $this->_form($this->table);
- }
- /**
- * 详情
- * @auth true
- */
- public function school_info()
- {
- $id = $this->request->get('id');
- $name = Db::name($this->table)->where('id',$id)->value('name');
- $this->title = $name;
- $this->_form($this->table);
- }
- /**
- * 学生管理
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function student()
- {
- $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();
- }
- }
|