lizhen_gitee 2 일 전
부모
커밋
ae57413df9
2개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      application/api/controller/Question.php
  2. 2 1
      application/index/controller/Index.php

+ 2 - 2
application/api/controller/Question.php

@@ -34,7 +34,7 @@ class Question extends Api
 
         //上次绑定选手的时间不是今天
         if(empty($this->auth->bind_jigou_id)){
-            $this->error('先绑定工会再答题',null,2);
+            $this->error('先绑定单位再答题',null,2);
         }
 
         //今天,总答题次数
@@ -92,7 +92,7 @@ class Question extends Api
 
         //上次绑定选手的时间不是今天
         if(empty($this->auth->bind_jigou_id)){
-            $this->error('先绑定工会再答题',null,2);
+            $this->error('先绑定单位再答题',null,2);
         }
 
         //检查今日答题次数

+ 2 - 1
application/index/controller/Index.php

@@ -14,7 +14,8 @@ class Index extends Controller
 
     public function index()
     {
-        $this->redirect('/h5');
+        exit;
+//        $this->redirect('/h5');
     }
 
 }