wupengfei 2 anni fa
parent
commit
0e2c942b28
2 ha cambiato i file con 4 aggiunte e 4 eliminazioni
  1. 2 2
      .idea/workspace.xml
  2. 2 2
      application/api/controller/Base.php

+ 2 - 2
.idea/workspace.xml

@@ -3,7 +3,7 @@
   <component name="ChangeListManager">
     <list default="true" id="39916099-6c76-4a34-b5a2-40f5b4c0c928" name="Default Changelist" comment="">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/application/common.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/common.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/application/api/controller/Base.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/api/controller/Base.php" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -219,7 +219,7 @@
       <workItem from="1665621143495" duration="2513000" />
       <workItem from="1665708328289" duration="8744000" />
       <workItem from="1665794611802" duration="1412000" />
-      <workItem from="1665967743750" duration="1422000" />
+      <workItem from="1665967743750" duration="1595000" />
     </task>
     <task id="LOCAL-00001" summary=".">
       <created>1663731279977</created>

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

@@ -58,8 +58,8 @@ class Base extends Controller
         $authorization = app()->request->header('Authorization');
         if(empty($authorization) || $authorization == null){
             if($this->is_test == 1) {
-               //  $this->uid = input('user_id') ?  input('user_id') : 965;
-                 //return true;
+                 $this->uid = input('user_id') ?  input('user_id') : 965;
+                 return true;
             }
             $this->error('Token不存在,拒绝访问',null,-1);
         }