|
...
|
...
|
@@ -32,10 +32,10 @@ class GeoController extends BaseController |
|
|
|
$token = trim($this->param['token']);
|
|
|
|
$param = Crypt::decrypt($token);
|
|
|
|
}catch (\Exception $e){
|
|
|
|
$this->response('非法请求');
|
|
|
|
$this->response('非法请求',Code::SYSTEM_ERROR);
|
|
|
|
}
|
|
|
|
if ($param['send_at'] + 86400 < time()) {
|
|
|
|
$this->response('非法请求,已过期');
|
|
|
|
$this->response('非法请求,已过期',Code::SYSTEM_ERROR);
|
|
|
|
}
|
|
|
|
$project_id = $param['project_id'];
|
|
|
|
$projectModel = new Project();
|
...
|
...
|
|