yangfeng
2024-03-25 204ce09a62e0a0fd9f3eb62b64f3345627fc7a5c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import request from "@/common/untils/request"
 
// 重置密码
export function initPassword(data) {
  return request({
    url: "/api/user/initPassword",
    method: "post",
    data,
  });
}
// 设置新密码
export function modifiedPwd(data) {
  return request({
    url: "/api/user/modifiedPwd",
    method: "post",
    data,
  });
}