16 lines
412 B
JavaScript
16 lines
412 B
JavaScript
|
//封装post,get,patch 请求
|
|||
|
import request from "./servies";
|
|||
|
const jyRquest={
|
|||
|
// post 封装请求
|
|||
|
post(config){
|
|||
|
return request({...config,method:'POST'})
|
|||
|
},
|
|||
|
get(config){
|
|||
|
console.log('封装post,get,patch 请求:',{...config})
|
|||
|
return request({...config,method:'GET'})
|
|||
|
},
|
|||
|
patch(config){
|
|||
|
return request({...config,method:'PATCH'})
|
|||
|
}
|
|||
|
}
|
|||
|
export default jyRquest;
|