qirong
2023-07-26 34df92cf96c02e150076d35b73163a260e7312c0
1
2
3
4
5
6
import { post, postWithLoadTip } from '@/utils/request'
 
export default {
  login: query => postWithLoadTip(`/api/user/login`, query),
  logout: query => post(`/api/user/logout`, query)
}