10 lines
179 B
JavaScript
Raw Normal View History

2025-03-11 09:45:29 +08:00
import http from './request.js'
export default {
get(url,data){
return http({url,data,method:'GET'})
},
post(url,data){
return http({url,data,method:'POST'})
},
}