wugg il y a 9 mois
Parent
commit
612cf19c95

+ 3 - 0
app/bug/controller/Work.php

@@ -205,6 +205,9 @@ class Work extends Base{
 		$work_id=$this->request->post('work_id/d');
 		$info= WorkTemplate::where(['work_id'=>$work_id])->findOrEmpty();
 		if($info->isEmpty()) error('未找到数据');
+		$action = WorkAction::where("id",$info->action)->field("action_name,menu_id,belong_action,belong_process")
+		->select();
+		
 		return success('获取成功',$info);
 	}
 }

+ 3 - 0
app/bug/model/WorkAction.php

@@ -38,4 +38,7 @@ use think\model\concern\SoftDelete;class WorkAction extends Base
     public function SetBelongProcessAttr($v){
     	return json_encode($v,JSON_UNESCAPED_UNICODE);
     }
+    
+    public function GetTreeActionByIdArr($idArr){
+    }
 }

+ 3 - 2
app/common/token/driver/Redis.php

@@ -91,8 +91,9 @@ class Redis extends Driver
 
         if ($data['expiretime'] && $data['expiretime'] <= time() && $expirationException) {
             // token过期-触发前端刷新token
-            $response = Response::create(['code' => 101, 'msg' => __('Token expiration'), 'data' => $data], 'json');
-            throw new HttpResponseException($response);
+            throw new \Exception("token过期",101);
+//            $response = Response::create(['code' => 101, 'msg' => __('Token expiration'), 'data' => $data], 'json');
+//            throw new HttpResponseException($response);
         }
         return $data;
     }