This commit is contained in:
zoujiandong
2025-07-10 10:07:20 +08:00
parent 3265d590bd
commit bbe721f610
10 changed files with 791 additions and 11 deletions
+8
View File
@@ -96,6 +96,14 @@ export const postRequest = (url, data) => {
return request({ data, url, method: 'post' });
};
/**
* put请求
*/
export const putRequest = (url, data) => {
return request({ data, url, method: 'put' });
};
/**
* get请求
*/