Files
admin_core/src/api/system/fileServe.js
张成 88cd8d6e72 1
2025-10-09 23:50:03 +08:00

16 lines
350 B
JavaScript

import http from "@/utils/http";
class FileServe {
async upload_oos_img(row) {
let res = await http.postFormData("/sys_file/upload_oos_img", row);
return res;
}
async upload_Img(row) {
let res = await http.postFormData("/file/upload_Img", row);
return res;
}
}
const fileServe = new FileServe();
export default fileServe;