yangfeng
2024-03-23 12cf68ea971e5c39e884474734ef51cbc52bec8d
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,
  });
}