bonus-material-app/src/services/index.js

13 lines
196 B
JavaScript
Raw Normal View History

2024-11-18 09:05:38 +08:00
import { http } from '@/utils/http'
/**
* 登录接口
*/
export const appLoginAPI = (data) => {
return http({
method: 'POST',
url: '/auth/loginApp',
data,
})
}