From 44cd199a79b5d9e7cc0900166340e3c4991c0fcf Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期三, 17 六月 2026 14:15:52 +0800
Subject: [PATCH] fix:1.发货台账删除去掉 2.出库台账反审添加

---
 src/views/collaborativeApproval/notificationManagement/summary/index.vue |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/views/collaborativeApproval/notificationManagement/summary/index.vue b/src/views/collaborativeApproval/notificationManagement/summary/index.vue
index bf6e230..9f3fc7f 100644
--- a/src/views/collaborativeApproval/notificationManagement/summary/index.vue
+++ b/src/views/collaborativeApproval/notificationManagement/summary/index.vue
@@ -28,7 +28,7 @@
         <el-table-column prop="location" label="浼氳鍦扮偣" align="center" width="150" />
         <el-table-column prop="participants" label="鍙備細浜烘暟" align="center" width="100">
           <template #default="scope">
-            {{ scope.row.participants.length }}浜�
+            {{ scope.row.staffCount }}浜�
           </template>
         </el-table-column>
         <el-table-column label="鎿嶄綔" align="center" width="200" fixed="right">
@@ -207,9 +207,9 @@
   let resp = await getMeetingPublish({ ...searchForm, ...queryParams })
   meetingList.value = resp.data.records.map(it => {
     let room = roomEnum.value.find(room => it.roomId === room.id)
-    it.location = `${room.name}(${room.location})`
+    it.location = room ? `${room.name}(${room.location})` : ''
     let staffs = JSON.parse(it.participants)
-    it.staffCount = staffs.size
+    it.staffCount = staffs.length
     it.meetingTime = `${it.meetingDate} ${dayjs(it.startTime).format('HH:mm:ss')} ~ ${dayjs(it.endTime).format('HH:mm:ss')}`
     it.participants = staffList.value.filter(staff => staffs.some(id => id === staff.id)).map(staff => {
       return {
@@ -260,7 +260,7 @@
 <p><strong>涓绘寔浜猴細</strong>${row.host}</p>
 <p><strong>鍙備細浜哄憳锛�</strong></p>
 <ol>
-  ${row.participants.map(p => `<li>${p.name}</li>`).join('')}
+  ${(row.participants || []).map(p => `<li>${p?.name || ''}</li>`).join('')}
 </ol>
 <p><strong>浼氳鍐呭锛�</strong></p>
 <ol>

--
Gitblit v1.9.3