This commit is contained in:
2025-11-28 17:40:40 +08:00
commit 135696ef93
244 changed files with 37401 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import request from '@/api/request';
// 上传图片 图片上传
export const uploadImage = data => {
return request({
url: '/blade-resource/oss/endpoint/put-file',
method: 'post',
data,
headers: {
'Content-Type': 'multipart/form-data',
},
});
};