Files
Yi.Admin/Yi.App.Vue3/src/api/fileApi.ts

12 lines
261 B
TypeScript
Raw Normal View History

2023-10-07 01:31:56 +08:00
import myaxios from '@/utils/myaxios'
export default{
2023-10-08 23:50:53 +08:00
upload(data:any){
2023-10-07 01:31:56 +08:00
return myaxios({
2023-10-08 23:50:53 +08:00
url: `/file`,
2023-10-07 01:31:56 +08:00
headers:{"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"},
2023-10-08 23:50:53 +08:00
method: 'post',
2023-10-07 01:31:56 +08:00
data:data
});
}
}