zhangxiaoxu
2026-01-06 89761212ad3ac02b68276d82c26ab6cd767ea216
utils/index.js
@@ -39,3 +39,16 @@
   opt.params = params;
   return fetch(url, opt)
}
// put请求
export const reqPut = (url, params,form, opt = {}) => {
    if(form == 'form'){
        opt.header = {'Content-Type': 'application/x-www-form-urlencoded'}
    } else {
        opt.header = typeObj['headerPOST'];
    }
    opt.method = "PUT";
    opt.data = params;
    opt.params = params;
    return fetch(url, opt)
}