|
|
|
@@ -74,7 +74,7 @@ |
|
|
|
></i> |
|
|
|
<input |
|
|
|
type="text" |
|
|
|
placeholder="搜数据集名称..." |
|
|
|
placeholder="搜数据集名称/描述..." |
|
|
|
v-model="search" |
|
|
|
@keyup.enter="searchName" |
|
|
|
/> |
|
|
|
@@ -618,7 +618,10 @@ export default { |
|
|
|
methods: { |
|
|
|
openDataset() { |
|
|
|
this.dialogVisible = true; |
|
|
|
this.confirmFlag = false; |
|
|
|
if (!this.confirmDatasetList) { |
|
|
|
this.confirmFlag = false; |
|
|
|
} |
|
|
|
|
|
|
|
this.getCurrentRepoDataset(); |
|
|
|
}, |
|
|
|
handleClick(tab, event) { |
|
|
|
@@ -651,7 +654,8 @@ export default { |
|
|
|
console.log("111111111111"); |
|
|
|
if ( |
|
|
|
this.selectDatasetArray.some((item) => { |
|
|
|
return item.label === data.label; |
|
|
|
console.log(item.label.split(".")[0], data.label.split(".")[0]); |
|
|
|
return item.label.split(".")[0] === data.label.split(".")[0]; |
|
|
|
}) |
|
|
|
) { |
|
|
|
this.$refs[data.ref].setChecked(data.id, false, false); |
|
|
|
|