School.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use ClassesWithParents\D;
  16. use think\admin\Controller;
  17. use think\facade\Db;
  18. /**
  19. * 学校管理
  20. * Class User
  21. * @package app\admin\controller
  22. */
  23. class School extends Controller
  24. {
  25. /**
  26. * 绑定数据表
  27. * @var string
  28. */
  29. private $table = 'school2';
  30. /**
  31. * 学校管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. */
  38. public function index()
  39. {
  40. $this->title = '学校信息管理';
  41. $query = $this->_query($this->table)->where('is_deleted',0)->like('name')->equal('school_code,office_phone,type,county_id');
  42. $query->order('id desc')->page();
  43. }
  44. /**
  45. * 数据列表处理
  46. * @param array $data
  47. * @throws \think\db\exception\DataNotFoundException
  48. * @throws \think\db\exception\ModelNotFoundException
  49. * @throws \think\exception\DbException
  50. */
  51. protected function _index_page_filter(&$data)
  52. {
  53. foreach ($data as &$value){
  54. }
  55. $this->type_arr = array('1'=>'幼儿园','2'=>'小学','3'=>'初中','4'=>'高中','5'=>'特教','6'=>'工读','7'=>'中职');
  56. $this->county_list = $this->app->db->name('county_list')->column('name','id');
  57. }
  58. protected function _form_filter(&$data){
  59. if($this->request->isGet()) {
  60. $this->data = $data;
  61. }elseif ($this->request->isPost()){
  62. if (isset($data['id']) && $data['id'] > 0) {
  63. $is_set = $this->app->db->name('school2')->where('username',$data['username'])->where('id','<>',$data['id'])->find();
  64. if($is_set){
  65. $this->error('不能设置重复的账号');
  66. }
  67. $data['password'] = md5($data['visible_password']);
  68. }
  69. }
  70. }
  71. /**
  72. * 编辑学校
  73. * @auth true
  74. * @throws \think\Exception
  75. * @throws \think\db\exception\DataNotFoundException
  76. * @throws \think\db\exception\ModelNotFoundException
  77. * @throws \think\exception\DbException
  78. * @throws \think\exception\PDOException
  79. */
  80. public function edit()
  81. {
  82. $this->title = '编辑';
  83. $this->_form($this->table, 'form');
  84. }
  85. /**
  86. * 删除学校
  87. * @auth true
  88. * @throws \think\Exception
  89. * @throws \think\exception\PDOException
  90. */
  91. public function remove()
  92. {
  93. $this->_save($this->table, ['is_deleted' => '1']);
  94. }
  95. /**
  96. * 禁用学校
  97. * @auth true
  98. * @throws \think\Exception
  99. * @throws \think\exception\PDOException
  100. */
  101. public function forbid()
  102. {
  103. $this->_save($this->table, ['status' => '0']);
  104. }
  105. /**
  106. * 启用学校
  107. * @auth true
  108. * @throws \think\Exception
  109. * @throws \think\exception\PDOException
  110. */
  111. public function resume()
  112. {
  113. $this->_save($this->table, ['status' => '1']);
  114. }
  115. /**
  116. * 详情
  117. * @auth true
  118. */
  119. public function info()
  120. {
  121. $id = $this->request->get('id');
  122. $name = Db::name($this->table)->where('id',$id)->value('name');
  123. $this->title = $name;
  124. $this->_form($this->table);
  125. }
  126. /**
  127. * 详情
  128. * @auth true
  129. */
  130. public function school_info()
  131. {
  132. $id = $this->request->get('id');
  133. $name = Db::name($this->table)->where('id',$id)->value('name');
  134. $this->title = $name;
  135. $this->_form($this->table);
  136. }
  137. /**
  138. * 学生管理
  139. * @throws \think\db\exception\DataNotFoundException
  140. * @throws \think\db\exception\DbException
  141. * @throws \think\db\exception\ModelNotFoundException
  142. */
  143. public function student()
  144. {
  145. $school_id = $this->request->get('id');
  146. $this->title = Db::table($this->table)->where('id',$school_id)->value('name').'--学生管理';
  147. $query = $this->_query('students')->where('school_id',$school_id);
  148. $query->like('name,sex,id_card,student_number,grade,class');
  149. // 列表排序并显示
  150. $query->page();
  151. }
  152. /**
  153. * 学生管理数据列表处理
  154. * @param array $data
  155. * @throws \think\db\exception\DataNotFoundException
  156. * @throws \think\db\exception\ModelNotFoundException
  157. * @throws \think\exception\DbException
  158. */
  159. protected function _student_page_filter(&$data)
  160. {
  161. $school_id = $this->request->get('id');
  162. $grade1 = array(''=>'全部');
  163. $grade2 = [];
  164. $grade = Db::name('students')
  165. ->where('school_id',$school_id)
  166. ->group('grade')
  167. ->column('grade');
  168. foreach ($grade as &$v){
  169. $grade2[$v] = $v;
  170. }
  171. $grade = array_merge($grade1,$grade2);
  172. $this->grade = $grade;
  173. $get_grade = '';
  174. if (isset($_GET['grade']) && $_GET['grade']){
  175. $get_grade = mb_substr($_GET['grade'],2);
  176. }
  177. $class1 = array(''=>'全部');
  178. $class2 = [];
  179. $class = Db::name('students')
  180. ->where('school_id',$school_id)
  181. ->when($get_grade,function ($query) use ($get_grade){
  182. if ($get_grade){
  183. $query->whereLike('class',$get_grade.'%');
  184. }
  185. })
  186. ->group('class')
  187. ->column('class');
  188. foreach ($class as &$v){
  189. $class2[$v] = $v;
  190. }
  191. $class = array_merge($class1,$class2);
  192. $this->class = $class;
  193. }
  194. /**
  195. * 教师管理
  196. * @throws \think\db\exception\DataNotFoundException
  197. * @throws \think\db\exception\DbException
  198. * @throws \think\db\exception\ModelNotFoundException
  199. */
  200. public function teacher()
  201. {
  202. $school_id = $this->request->get('id');
  203. $this->title = Db::table($this->table)->where('id',$school_id)->value('name').'--教师管理';
  204. $query = $this->_query('teacher');
  205. $query->like('name');
  206. // 列表排序并显示
  207. $query->where('school_id',$school_id)->page();
  208. }
  209. }