This commit is contained in:
2025-07-15 18:02:29 +08:00
parent 2038ddc617
commit d636050aac
65 changed files with 17885 additions and 103 deletions
+45
View File
@@ -0,0 +1,45 @@
import {http2} from "@/utils/request.js";
/**获取用户列表 */
export const ask_update_user_email11 = data => {
return http2.get(`/v1/user/info/ask_update_user_email?email=${data.email}`);
};
/**email验证码 */
export const ask_update_user_email = data => {
return http2.post("/v1/user/info/ask_update_user_email", data, {
headers: {
"Content-Type": "multipart/form-data"
}
});
};
/**email修改 */
export const update_user_email = data => {
return http2.post("/v1/user/info/update_user_email", data, {
headers: {
"Content-Type": "multipart/form-data"
}
});
};
/**phone验证码 */
export const ask_update_user_phone = data => {
return http2.post("/v1/user/info/ask_update_user_phone", data, {
headers: {
"Content-Type": "multipart/form-data"
}
});
};
/**phone修改 */
export const update_user_phone = data => {
return http2.post("/v1/user/info/update_user_phone", data, {
headers: {
"Content-Type": "multipart/form-data"
}
});
};
/**密码修改 */
export const update_user_password = data => {
return http2.post("/v1/user/info/update_user_password", data, {
headers: {
"Content-Type": "multipart/form-data"
}
});
};