mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-29 21:26:36 +08:00
12 lines
261 B
TypeScript
12 lines
261 B
TypeScript
import myaxios from '@/utils/myaxios'
|
|
|
|
export default{
|
|
upload(data:any){
|
|
return myaxios({
|
|
url: `/file`,
|
|
headers:{"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8"},
|
|
method: 'post',
|
|
data:data
|
|
});
|
|
}
|
|
} |