From cc5a9d43da1daa5bc3f1da223eb34c698b79644b Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Tue, 6 Jun 2023 12:11:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/IndexController.php | 2 +- app/api/controller/Project.php | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/app/api/controller/IndexController.php b/app/api/controller/IndexController.php index bcaedea..b5666d6 100644 --- a/app/api/controller/IndexController.php +++ b/app/api/controller/IndexController.php @@ -54,6 +54,6 @@ class IndexController extends Base } public function getOssInfo(Request $request){ - return $this->json(200,'ok',['bucketURL'=>'http://127.0.0.1:8787']); + return $this->json(200,'ok',['bucketURL'=>'http://goviewphp.lihaink.cn']); } } diff --git a/app/api/controller/Project.php b/app/api/controller/Project.php index a984e4e..94027e7 100644 --- a/app/api/controller/Project.php +++ b/app/api/controller/Project.php @@ -28,7 +28,6 @@ class Project extends Base $res=ProjectModel::where('id',$id)->first(); $res['CreateTime']=$res['created_at']; $res['CreateUserId']=1; - $res['id']=$res['Id']; return $this->json(200,'ok',$res->toArray()); }