提交 1caecaac authored 作者: chengye's avatar chengye

添加project v2 接口

上级 5e5dd58a
...@@ -96,7 +96,6 @@ class Payment ...@@ -96,7 +96,6 @@ class Payment
return '秘钥错误'; return '秘钥错误';
} }
return true; return true;
} }
...@@ -116,4 +115,7 @@ class Payment ...@@ -116,4 +115,7 @@ class Payment
} }
} }
public function commonCheckKey($key){
return $this->checkKey($key);
}
} }
\ No newline at end of file
...@@ -31,7 +31,7 @@ class Project extends Controller ...@@ -31,7 +31,7 @@ class Project extends Controller
public function project_list() public function project_list()
{ {
$data = request()->get(); $data = request()->get();
$res = $this->checkKey($data['key']); $res = (new Payment())->commonCheckKey($data['key']);
if ($res !== true) return json([ if ($res !== true) return json([
'code' => 201, 'code' => 201,
'message' => $res, 'message' => $res,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论