emis-app/common/api/user.js

10 lines
259 B
JavaScript
Raw Normal View History

2024-03-04 05:36:23 +00:00
import { coreRequest } from '@/common/request'
import url from "./url"
export const loginByApp = (data = {})=> {
2024-03-04 05:36:23 +00:00
return coreRequest(url.loginByApp, data)
}
export const getInfoByApp = (data = {})=> {
2024-03-04 05:36:23 +00:00
return coreRequest(url.getInfoByApp, data, {}, 'GET')
}