diff --git a/frontend/src/views/eval/EvalView.vue b/frontend/src/views/eval/EvalView.vue
index a57e8d0..1906e13 100644
--- a/frontend/src/views/eval/EvalView.vue
+++ b/frontend/src/views/eval/EvalView.vue
@@ -75,12 +75,8 @@ function handleCreateClick() {
}
}
-function handleRefresh() {
- if (activeTab.value === 'tasks') {
- loadEvalList()
- } else if (activeTab.value === 'dimensions') {
- loadDimensions()
- }
+function handleViewDetail(row: any) {
+ ElMessage.info('详情功能开发中')
}
onMounted(() => {
@@ -109,16 +105,6 @@ onMounted(() => {
-
-
-
@@ -134,6 +120,7 @@ onMounted(() => {
+ 详情
删除
@@ -152,16 +139,6 @@ onMounted(() => {
-
-
-
@@ -187,16 +164,6 @@ onMounted(() => {
-
-
-
@@ -264,44 +231,4 @@ onMounted(() => {
}
}
-.eval-header-actions {
- display: flex;
- align-items: center;
- gap: 16px;
-
- .action-guide {
- font-size: 13px;
- color: #64748b;
- display: flex;
- align-items: center;
- gap: 4px;
- cursor: pointer;
- transition: color 0.2s;
-
- &:hover {
- color: #1e293b;
- }
- }
-
- .action-refresh {
- border: 0;
- background: transparent;
- width: 32px;
- height: 32px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 14px;
- color: #64748b;
- cursor: pointer;
- border-radius: 6px;
- transition: background 0.2s, color 0.2s;
- outline: none;
-
- &:hover {
- background: #f1f5f9;
- color: #1e293b;
- }
- }
-}