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.
26 lines
473 B
26 lines
473 B
import request from '@/utils/request'
|
|
|
|
|
|
export function getVecsetList(data) {
|
|
return request({
|
|
url: '/default-api/dataint/vecset/list',
|
|
method: 'get',
|
|
params: data
|
|
})
|
|
}
|
|
|
|
export function saveVecset(data){
|
|
return request({
|
|
url: '/default-api/dataint/vecset/save',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
export function deleteVecset(array){
|
|
return request({
|
|
url: '/default-api/dataint/vecset/delete',
|
|
method: 'post',
|
|
data: array
|
|
})
|
|
}
|
|
|