import http from "@/utils/request"; //是否第一次注册 export const isNewUser = () => { return http({ url: "/api/UserInfo/IsNewUser", method: "GET", }); }; // 获取用户信息 export const getUserInfo = () => { return http({ url:'/api/UserInfo/My', method:'GET' }) };