8.31 录入照片接口

This commit is contained in:
jl-zhoujl2
2022-08-31 14:24:40 +08:00
parent 0129d101c7
commit adb2068805

View File

@ -96,4 +96,13 @@ export const rePassWord = async (id: any) => {
message.error('重置失败请重试,或联系管理员!');
return false;
}
};
/**
* 成员录入-获取照片
* @returns
*/
export async function getUserPhoto(idCard: any) {
return request("/api/biz-service-ebtp-rsms/v1/jury/user/photo/" + idCard, {
method: 'GET',
});
};