From 72b025d6b43271ae88541ea23c92070b3b2acc96 Mon Sep 17 00:00:00 2001
From: sd <shidong@jhsoft.cc>
Date: 星期二, 05 八月 2025 16:15:44 +0800
Subject: [PATCH] 模型训练-批量批注、批量删除以及批量导入功能实现

---
 src/pages/analysisPower/index/App.vue |   44 +++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 43 insertions(+), 1 deletions(-)

diff --git a/src/pages/analysisPower/index/App.vue b/src/pages/analysisPower/index/App.vue
index 5616a8a..ba361b6 100644
--- a/src/pages/analysisPower/index/App.vue
+++ b/src/pages/analysisPower/index/App.vue
@@ -116,7 +116,7 @@
             </template>
           </el-table-column>
           <el-table-column
-            label="鐫f煡浠诲姟"
+            label="AI浠诲姟"
             align="center"
             show-overflow-tooltip
           >
@@ -124,6 +124,34 @@
               <span v-if="scope.row.run_type === -1">-</span>
               <span v-else-if="scope.row.allTasks != null">{{
                 scope.row.allTasks | allTaskList
+              }}</span>
+              <span v-else>-</span>
+            </template>
+          </el-table-column>
+          
+          <el-table-column
+            label="浠诲姟鎻忚堪"
+            align="center"
+            show-overflow-tooltip
+          >
+            <template slot-scope="scope">
+              <span v-if="scope.row.run_type === -1">-</span>
+              <span v-else-if="scope.row.allTasks != null">{{
+                scope.row.allTasks | allDescription
+              }}</span>
+              <span v-else>-</span>
+            </template>
+          </el-table-column>
+          
+          <el-table-column
+            label="浜嬩欢绛夌骇"
+            align="center"
+            show-overflow-tooltip
+          >
+            <template slot-scope="scope">
+              <span v-if="scope.row.run_type === -1">-</span>
+              <span v-else-if="scope.row.allTasks != null">{{
+                scope.row.allTasks | allEventName
               }}</span>
               <span v-else>-</span>
             </template>
@@ -293,6 +321,20 @@
         })
         .join(" / ");
     },
+    allEventName(allTasks) {
+      return allTasks
+        .map((allTasks) => {
+          return allTasks.eventName;
+        })
+        .join(" / ");
+    },
+    allDescription(allTasks) {
+      return allTasks
+        .map((allTasks) => {
+          return allTasks.taskDescription;
+        })
+        .join(" / ");
+    },
     switchText(type) {
       return type ? "宸插紑鍚�" : "鏈紑鍚�";
     },

--
Gitblit v1.8.0