Files
AGuestSaas/apis/interfaces/file.js
2020-12-27 09:54:49 +08:00

13 lines
212 B
JavaScript

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