...
|
...
|
@@ -129,6 +129,14 @@ class Exam extends Api |
|
|
$this->error('缺少必要参数');
|
|
|
}
|
|
|
|
|
|
// 没有题目就不让进答题页面
|
|
|
$dan = Db::name('dan')->where('study_id',$study_id)->field('id')->find();
|
|
|
$duo = Db::name('duo')->where('study_id',$study_id)->field('id')->find();
|
|
|
$pan = Db::name('pan')->where('study_id',$study_id)->field('id')->find();
|
|
|
if(empty($dan) && empty($duo) && empty($pan)){
|
|
|
$this->error('该考试还没有题目,请联系管理员');
|
|
|
}
|
|
|
|
|
|
//查看用户该科目是否已经考过3次了
|
|
|
$third_exam = Db::name('third_exam')
|
|
|
->where('user_id',$user_id)
|
...
|
...
|
|