xiangpei
2024-07-07 33889c6b19467e2f8dae9990359704adc6e3419d
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)
}