11 lines
165 B
TypeScript
11 lines
165 B
TypeScript
![]() |
import http from "@/utils/request";
|
||
|
|
||
|
//demo
|
||
|
export const isNewUser = () => {
|
||
|
return http({
|
||
|
url:'/api/UserInfo/IsNewUser',
|
||
|
method:'GET'
|
||
|
})
|
||
|
}
|
||
|
|