Files
AGuestSaas/apis/interfaces/file.js
2020-11-30 15:23:15 +08:00

13 lines
213 B
JavaScript

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