flower-app/src/api/user.ts
2023-05-28 21:19:03 +08:00

5 lines
179 B
TypeScript

import { UserType } from "../types/user"
import request from "../utils/request"
export const userLogin = (account:UserType) => {
return request.post("api/user/auth",account)
}