yintai-company-home-am/api/app.ts

18 lines
358 B
TypeScript

import Request from "lib/utils/requests";
export default {
upload(data: any) {
return Request({
url: "/admin/cmp_upload",
method: "post",
data,
params: {
expire: 24 * 30 * 12 * 10,
},
headers: {
"Content-Type": "multipart/form-data",
},
}).then(res => ({ data: {url: res.data} }))
},
};