refactor(DataStatistics): 修改 AI样本标记列的标题
- 将 AI 无效样本标记改为 AI 样本标记- 优化了数据统计页面的列标题,提高可读性refactor(Home): 优化模型卡片的查看逻辑 - 修复了模型卡片悬停状态下的查看提示逻辑 - 提高了用户体验
This commit is contained in:
@@ -336,7 +336,7 @@ const columns = ref([
|
||||
// align: 'center'
|
||||
},
|
||||
{
|
||||
title: 'AI无效样本标记',
|
||||
title: 'AI样本标记',
|
||||
key: 'is_ai_mark',
|
||||
dataIndex: 'is_ai_mark',
|
||||
width: 130,
|
||||
|
||||
@@ -33,7 +33,7 @@ const getText = (index) => {
|
||||
if (hoverIndex.value === index) {
|
||||
return index === 2 ? "敬请期待" : "去查看";
|
||||
}
|
||||
return "去查看";
|
||||
return index === 2 ? "敬请期待" : "去查看";
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user