refactor(DataStatistics): 修改 AI样本标记列的标题

- 将 AI 无效样本标记改为 AI 样本标记- 优化了数据统计页面的列标题,提高可读性refactor(Home): 优化模型卡片的查看逻辑

- 修复了模型卡片悬停状态下的查看提示逻辑
- 提高了用户体验
This commit is contained in:
du.meimei
2025-05-23 13:39:39 +08:00
parent 5c3d461f0e
commit 8b10493891
2 changed files with 2 additions and 2 deletions

View File

@@ -336,7 +336,7 @@ const columns = ref([
// align: 'center'
},
{
title: 'AI无效样本标记',
title: 'AI样本标记',
key: 'is_ai_mark',
dataIndex: 'is_ai_mark',
width: 130,

View File

@@ -33,7 +33,7 @@ const getText = (index) => {
if (hoverIndex.value === index) {
return index === 2 ? "敬请期待" : "去查看";
}
return "去查看";
return index === 2 ? "敬请期待" : "去查看";
}
</script>