mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
11 lines
268 B
JavaScript
11 lines
268 B
JavaScript
|
|
import myaxios from '@/util/myaxios'
|
||
|
|
export default {
|
||
|
|
EditIcon(file) {
|
||
|
|
return myaxios({
|
||
|
|
url: '/File/EditIcon',
|
||
|
|
method: 'post',
|
||
|
|
headers: { "Content-Type": "multipart/form-data" },
|
||
|
|
data: file
|
||
|
|
})
|
||
|
|
}
|
||
|
|
}
|