11 lines
165 B
TypeScript
Raw Normal View History

2025-07-06 16:08:38 +08:00
import http from "@/utils/request";
//demo
export const isNewUser = () => {
return http({
url:'/api/UserInfo/IsNewUser',
method:'GET'
})
}