You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
426 B
19 lines
426 B
1 year ago
|
import request from '@/utils/request'
|
||
|
|
||
|
// api地址
|
||
|
const api = {
|
||
|
image: 'upload/image'
|
||
|
}
|
||
|
|
||
|
// 图片上传
|
||
|
export const image = files => {
|
||
|
// 文件上传大小, 2M
|
||
|
const maxSize = 1024 * 1024 * 2
|
||
|
// 执行上传
|
||
|
return new Promise((resolve, reject) => {
|
||
|
request.urlFileUpload({ files, maxSize })
|
||
|
.then(result => resolve(result.map(item => item.data.fileInfo.file_id), result))
|
||
|
.catch(reject)
|
||
|
})
|
||
|
}
|