作者 李宇航

合并分支 'lyh-server' 到 'master'

变更数据



查看合并请求 !2882
@@ -140,8 +140,10 @@ class TicketUploadDataController extends BaseController @@ -140,8 +140,10 @@ class TicketUploadDataController extends BaseController
140 if($info === false){ 140 if($info === false){
141 $this->response('当前数据不存在或已被删除',Code::SYSTEM_ERROR); 141 $this->response('当前数据不存在或已被删除',Code::SYSTEM_ERROR);
142 } 142 }
  143 + ProjectServer::useProject($info['project_id']);
143 $info['text']['cate_name'] = $this->cateText($info['type'],$info['text']['category_id'] ?? [],true); 144 $info['text']['cate_name'] = $this->cateText($info['type'],$info['text']['category_id'] ?? [],true);
144 $info = $this->getHandleFileImage($info); 145 $info = $this->getHandleFileImage($info);
  146 + DB::disconnect('custom_mysql');
145 $this->response('success', Code::SUCCESS, $info); 147 $this->response('success', Code::SUCCESS, $info);
146 } 148 }
147 149