|
@@ -848,13 +848,13 @@ const upload = reactive({
|
|
|
const tableDataCan = ref([])
|
|
const tableDataCan = ref([])
|
|
|
const optionsShuLei = ref([
|
|
const optionsShuLei = ref([
|
|
|
{label:"SQL数据集",
|
|
{label:"SQL数据集",
|
|
|
- value:'SQL数据集'
|
|
|
|
|
|
|
+ value:'SQL'
|
|
|
},
|
|
},
|
|
|
{label:"API数据集",
|
|
{label:"API数据集",
|
|
|
- value:'API数据集'
|
|
|
|
|
|
|
+ value:'API'
|
|
|
},
|
|
},
|
|
|
{label:"文件数据集",
|
|
{label:"文件数据集",
|
|
|
- value:'文件数据集'
|
|
|
|
|
|
|
+ value:'FILE'
|
|
|
},
|
|
},
|
|
|
])
|
|
])
|
|
|
const valueNode = ref('')
|
|
const valueNode = ref('')
|
|
@@ -1446,7 +1446,7 @@ async function showPei(row){
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
- if(row.dcType==='SQL数据集'){
|
|
|
|
|
|
|
+ if(row.dcType==='SQL'){
|
|
|
dialogVisibleTree.value = true
|
|
dialogVisibleTree.value = true
|
|
|
getDataJiSql(row.dcCode).then(res=>{
|
|
getDataJiSql(row.dcCode).then(res=>{
|
|
|
if(res.code===200){
|
|
if(res.code===200){
|
|
@@ -1455,7 +1455,7 @@ async function showPei(row){
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
- if(row.dcType==='API数据集'){
|
|
|
|
|
|
|
+ if(row.dcType==='API'){
|
|
|
dialogVisibleApi.value = true
|
|
dialogVisibleApi.value = true
|
|
|
getDataJiApi(row.dcCode).then(res=>{
|
|
getDataJiApi(row.dcCode).then(res=>{
|
|
|
if(res.code===200){
|
|
if(res.code===200){
|
|
@@ -1463,7 +1463,7 @@ async function showPei(row){
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
- if(row.dcType==='文件数据集'){
|
|
|
|
|
|
|
+ if(row.dcType==='FILE'){
|
|
|
dialogVisibleFile.value = true
|
|
dialogVisibleFile.value = true
|
|
|
getDataJiFile(row.dcCode).then(res=>{
|
|
getDataJiFile(row.dcCode).then(res=>{
|
|
|
if(res.code===200){
|
|
if(res.code===200){
|