Files
sykl-mall/api/interfaces/file.js
2023-07-22 19:01:37 +08:00

17 lines
286 B
JavaScript

/*
* 图图片上传公用接口
*/
import { upload } from "../request"
//图上传
const uploadImg = (imgPaht, data) => upload({
url: "storage/upload",
method: "POST",
key: "upload",
path: imgPaht,
data: data
})
export default ({
uploadImg
})