Commit cfa06383 cfa063833f5cfbf41442234ff1df624d77f73a06 by lemon

增加日志

1 parent 8c5d3c7b
...@@ -143,7 +143,7 @@ class PropertyTrackService extends Service ...@@ -143,7 +143,7 @@ class PropertyTrackService extends Service
143 */ 143 */
144 public function shareCreate() 144 public function shareCreate()
145 { 145 {
146 if (!PropertyTrack::query()->where(['from'=>$this->request->input('from'), 'id'=>$this->request->input('track_id')])->first()) { 146 if (!PropertyTrack::query()->where(['id'=>$this->request->input('track_id')])->first()) {
147 return Response::error(ErrorCode::SERVER_ERROR, '非法请求'); 147 return Response::error(ErrorCode::SERVER_ERROR, '非法请求');
148 } 148 }
149 149
......