From dec683054a9b704ccba1063ff002e2d26978ef89 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Thu, 11 Jan 2024 10:13:02 +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 --- application/project/controller/Project.php | 31 +++++++++++++++++----- 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/application/project/controller/Project.php b/application/project/controller/Project.php index d3f2231..2407e82 100755 --- a/application/project/controller/Project.php +++ b/application/project/controller/Project.php @@ -549,16 +549,35 @@ class Project extends BasicApi /** * 退出项目 */ - public - function quit() + public function quit() { - try { - $this->model->quit(Request::post('projectCode')); - } catch (\Exception $e) { - $this->error($e->getMessage(), $e->getCode());; + $member_code=Request::post('member_code'); + $positioning=Request::post('positioning'); + $find=Db::name('member_positioning')->where(['member_code'=>$member_code,'positioning'=>$positioning])->find(); + if(!$find){ + Db::name('member_positioning')->insert(['member_code'=>$member_code,'positioning'=>$positioning,'date'=>date('Y-m-d H:i:s')]); } $this->success(''); + // try { + // $this->model->quit(Request::post('projectCode')); + // } catch (\Exception $e) { + // $this->error($e->getMessage(), $e->getCode());; + // } + // $this->success(''); } + /** + * 上报定位 + */ + public function positioning(){ + $member_code=Request::post('member_code'); + $positioning=Request::post('positioning'); + $find=Db::name('member_positioning')->where(['member_code'=>$member_code,'positioning'=>$positioning])->find(); + if(!$find){ + Db::name('member_positioning')->insert(['member_code'=>$member_code,'positioning'=>$positioning,'date'=>date('Y-m-d H:i:s')]); + } + $this->success(''); + + } }