yangfeng
2023-10-26 71e394f0e1bc7c4f68ff607d7afcef9364480a36
1
2
3
4
5
6
7
8
9
10
import request from "@/common/untils/request.js"
 
// 新增用户(注册账号)
export function registerUser(data) {
  return request({
    url: "/api/user/register",
    method: "post",
    data
  })
}