You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
487 B
JavaScript
28 lines
487 B
JavaScript
import request from '@/utils/request'
|
|
|
|
// 查询OSS对象存储列表
|
|
export function listOss(query) {
|
|
return request({
|
|
url: '/system/oss/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询OSS对象基于id串
|
|
export function listByIds(ossId) {
|
|
return request({
|
|
url: '/system/oss/listByIds/' + ossId,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 删除OSS对象存储
|
|
export function delOss(ossId) {
|
|
return request({
|
|
url: '/system/oss/' + ossId,
|
|
method: 'delete'
|
|
})
|
|
}
|
|
|