From 15a15ded10ce55b327d8930b5145df0f4cf2e4f8 Mon Sep 17 00:00:00 2001
From: sd <shidong@jhsoft.cc>
Date: 星期一, 11 八月 2025 17:25:23 +0800
Subject: [PATCH] 问搜万物-卡片布局优化;模型优化数据添加按钮调整触发方式;历史会话样式调整。

---
 src/pages/analysisPower/index/App.vue |   28 ++++++++++++++++++++++++++--
 1 files changed, 26 insertions(+), 2 deletions(-)

diff --git a/src/pages/analysisPower/index/App.vue b/src/pages/analysisPower/index/App.vue
index aa2642f..ba361b6 100644
--- a/src/pages/analysisPower/index/App.vue
+++ b/src/pages/analysisPower/index/App.vue
@@ -129,12 +129,17 @@
             </template>
           </el-table-column>
           
-          <!-- <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>
           
@@ -144,8 +149,13 @@
             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>
-          </el-table-column> -->
+          </el-table-column>
           <el-table-column
             label="杩愯璁惧"
             align="center"
@@ -311,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