emis-app/common/api/user.js

10 lines
250 B
JavaScript
Raw Normal View History

import { corePost } from '@/common/request'
import url from "./url"
export const loginByApp = (data = {})=> {
return corePost(url.loginByApp, data)
}
export const getInfoByApp = (data = {})=> {
return corePost(url.getInfoByApp, data, {}, 'GET')
}