Exams.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. namespace app\admin\controller\teacher;
  3. use app\common\controller\Backend;
  4. /**
  5. * sim-考试表/成绩总分
  6. *
  7. * @icon fa fa-circle-o
  8. */
  9. class Exams extends Backend
  10. {
  11. /**
  12. * Exams模型对象
  13. * @var \app\admin\model\teacher\Exams
  14. */
  15. protected $model = null;
  16. protected $whereExtend = null;
  17. public function _initialize()
  18. {
  19. parent::_initialize();
  20. $this->model = new \app\admin\model\teacher\Exams;
  21. }
  22. /**
  23. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  24. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  25. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  26. */
  27. public function view($ids = null)
  28. {
  29. $row = $this->model->get($ids);
  30. if(!$row){
  31. $this->error('未找到记录');
  32. }
  33. $this->view->assign('row', $row);
  34. return $this->view->fetch();
  35. }
  36. //正在考试
  37. public function persent()
  38. {
  39. return $this->view->fetch();
  40. }
  41. }