From 2d3530a7c11557a40807ad7c0b9e302ce6ce3a9f Mon Sep 17 00:00:00 2001
From: hsy <1029150275@qq.com>
Date: 星期五, 28 八月 2026 10:16:32 +0800
Subject: [PATCH] feat: 综合业务模块页面重构与交互完善

---
 src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/components/DetailPanel.vue |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/components/DetailPanel.vue b/src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/components/DetailPanel.vue
index bfe1b68..dcd0082 100644
--- a/src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/components/DetailPanel.vue
+++ b/src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/components/DetailPanel.vue
@@ -11,6 +11,8 @@
     <el-descriptions-item label="鍛樺伐濮撳悕">{{ row.employeeName || row.applicantName || "鈥�" }}</el-descriptions-item>
     <el-descriptions-item label="鎶ラ攢鍘熷洜" :span="2">{{ row.reimburseReason || "鈥�" }}</el-descriptions-item>
     <el-descriptions-item label="鎶ラ攢閲戦">{{ row.applyAmount != null ? `${row.applyAmount} 鍏僠 : "鈥�" }}</el-descriptions-item>
+    <el-descriptions-item label="閮ㄩ棬">{{ row.applicantDeptName || row.deptName || "鈥�" }}</el-descriptions-item>
+    <el-descriptions-item label="浠樻鏂�">{{ row.payer || "鈥�" }}</el-descriptions-item>
     <el-descriptions-item label="鏀舵浜�">{{ row.payee || "鈥�" }}</el-descriptions-item>
     <el-descriptions-item label="鏀舵璐﹀彿">{{ row.payeeAccount || "鈥�" }}</el-descriptions-item>
     <el-descriptions-item label="寮�鎴锋敮琛�">{{ row.bankBranch || "鈥�" }}</el-descriptions-item>
@@ -50,7 +52,10 @@
 });
 
 const attachmentFiles = computed(() => {
-  const list = props.row?.attachmentList?.length ? props.row.attachmentList : props.row?.invoiceAttachments;
+  const list =
+    props.row?.attachmentList ||
+    props.row?.storageBlobVOList ||
+    props.row?.invoiceAttachments;
   return Array.isArray(list) ? list : [];
 });
 

--
Gitblit v1.9.3