819527061@qq.com
2023-12-01 c56e67c77e2a36c894346830c1ab1e6df36fe935
utils/index.js
@@ -18,7 +18,7 @@
   return fetch(url, opt)
}
// get请求
// get请求
// urlParam是拼接路径的参数
export const reqGet = (url, params, urlParam, opt = {}) => {
   opt.header = typeObj['headerGET'];
@@ -28,7 +28,7 @@
}
// post请求
export const reqPost = (url, params, form, opt = {}) => {
export const reqPost = (url, params,form, opt = {}) => {
   if(form == 'form'){
      opt.header = {'Content-Type': 'application/x-www-form-urlencoded'}
   } else {
@@ -36,5 +36,6 @@
   }
   opt.method = "POST";
   opt.data = params;
   opt.params = params;
   return fetch(url, opt)
}