23 lines
532 B
JavaScript
23 lines
532 B
JavaScript
import http from '../utils/http';
|
|
|
|
/**
|
|
* 登录
|
|
* @author Seven
|
|
* @data 2025-1-6
|
|
* @param {
|
|
* "number": "13128997057", // 注册手机号码或用户账号或邮箱
|
|
* "verify_code": "7828", // 手机或邮箱收到的验证码
|
|
* "new_password": "123456" // 修改的新密码
|
|
}
|
|
* @returns { }
|
|
* @see https://mall.gpxscs.cn/mobile/account/login/doForgetPassword
|
|
*/
|
|
|
|
export function GetForgePassword(params) {
|
|
return http({
|
|
url: '/account/login/doForgetPassword',
|
|
method: 'post',
|
|
data: params,
|
|
});
|
|
}
|