chenhj
5 天以前 2fc58fbb10745abd97168b8da21d4142e11d7f2e
1
2
3
4
5
6
7
8
9
10
11
12
import request from '@/utils/request'
 
export function upload(data) {
    return request({
        url: '/common/minioUploads',
        method: 'post',
        data: data,
        headers: {
            'Content-Type': 'multipart/form-data'
        }
    })
}