feat: 获取手机号

This commit is contained in:
2025-08-10 20:30:48 +08:00
parent e252f7d377
commit 59a4f5827f
2 changed files with 17 additions and 3 deletions

View File

@@ -23,6 +23,11 @@ const checkUserPhone = (args) => {
return request.get("/hotelBiz/user/checkUserHasBindPhone", args);
};
// 获取登录用户手机号
const getLoginUserPhone = (args) => {
return request.get("/hotelBiz/user/getLoginUserPhone", args);
};
// 获取服务协议
const getServiceAgreement = (args) => {
return request.get("/hotelBiz/mainScene/serviceAgreement", args);
@@ -37,6 +42,7 @@ export {
wxLogin,
bindUserPhone,
checkUserPhone,
getLoginUserPhone,
getServiceAgreement,
getPrivacyAgreement,
};