yangfeng
2024-02-28 fb3da04f2244f66545462dcaaa63c0b5a4684976
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
  })
}