fix: 数据集重命名

This commit is contained in:
taojinlong
2021-08-30 15:47:39 +08:00
parent 2cc028a219
commit b2e0089277
4 changed files with 25 additions and 11 deletions

View File

@@ -43,6 +43,15 @@ export function addTable(data) {
})
}
export function rename(data) {
return request({
url: '/dataset/table/rename',
method: 'post',
loading: true,
data
})
}
export function delTable(tableId) {
return request({
url: '/dataset/table/delete/' + tableId,