diff --git a/application/project/controller/Project.php b/application/project/controller/Project.php index aa59090..02d92df 100755 --- a/application/project/controller/Project.php +++ b/application/project/controller/Project.php @@ -597,4 +597,13 @@ class Project extends BasicApi } + public function positioning_member($code,$date=''){ + if($date==''){ + $select=Db::name('positioning')->where(['member_code'=>$code])->whereTime('date','today')->column('positioning'); + }else{ + $select=Db::name('positioning')->where(['member_code'=>$code])->whereBetweenTime('date',$date)->column('positioning'); + } + $this->success('',$select); + + } }