From 98af5364365cd310b527898e58815bb21cc9bbff Mon Sep 17 00:00:00 2001 From: zheng sen he <61687266+meteorOSS@users.noreply.github.com> Date: Thu, 18 Jan 2024 07:24:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AE=9E=E5=90=8D=E8=AE=A4=E8=AF=81?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E5=9C=B0=E5=9D=80=20(#74)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: 实名认证接口地址 * Delete package-lock.json --------- Co-authored-by: M397749490 <397749490@qq.com> --- providers/certify.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/certify.ts b/providers/certify.ts index 6ea41ca..7f9b2dc 100644 --- a/providers/certify.ts +++ b/providers/certify.ts @@ -17,7 +17,7 @@ export class Certify{ }); } queryCertifyResult(certify_id: string){ - return this.axios.post('/verify/query', null, {params: {certify_id}}); + return this.axios.get('/verify/query', null, {params: {certify_id}}); } getCertifyState(){ return this.axios.get('/user/verify');