可信代码库-查询用户是否认证接口对接

This commit is contained in:
付民康
2025-07-02 17:05:19 +08:00
parent 8094a6598d
commit 93341d483b
2 changed files with 17 additions and 4 deletions

View File

@@ -490,3 +490,11 @@ export function loginAccess() {
}
});
}
// 查询用户是否认证
export function fetchCheckAuthenticate(data) {
return request({
url: `/api/v1/user/checkAuthenticate`,
method: 'post',
data: data,
});
}