From d979f89c4b46729976aa44429922a910aeb5d8da Mon Sep 17 00:00:00 2001
From: yyb <995253665@qq.com>
Date: 星期一, 10 八月 2026 11:17:15 +0800
Subject: [PATCH] Merge branch 'dev_pro_山西_德益科技' of http://114.132.189.42:9002/r/product-inventory-management into dev_pro_山西_德益科技

---
 src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/components/DetailPanel.vue |   14 +++++++++++---
 1 files changed, 11 insertions(+), 3 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..c971a1a 100644
--- a/src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/components/DetailPanel.vue
+++ b/src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/components/DetailPanel.vue
@@ -6,7 +6,7 @@
       <el-tag :type="statusTagType(row.approvalResult)" size="small">{{ statusLabel(row.approvalResult) }}</el-tag>
     </el-descriptions-item>
     <el-descriptions-item label="璐圭敤绫诲瀷">{{ expenseCategoryLabel(row.expenseCategory) }}</el-descriptions-item>
-    <el-descriptions-item label="鐢宠鏃堕棿">{{ row.applyTime || row.createTime || "鈥�" }}</el-descriptions-item>
+    <el-descriptions-item label="鐢宠鏃堕棿">{{ dateOnly(row.applyTime || row.createTime) }}</el-descriptions-item>
     <el-descriptions-item label="鍛樺伐缂栧彿">{{ row.employeeNo || row.applicantNo || "鈥�" }}</el-descriptions-item>
     <el-descriptions-item label="鍛樺伐濮撳悕">{{ row.employeeName || row.applicantName || "鈥�" }}</el-descriptions-item>
     <el-descriptions-item label="鎶ラ攢鍘熷洜" :span="2">{{ row.reimburseReason || "鈥�" }}</el-descriptions-item>
@@ -17,7 +17,7 @@
     <el-descriptions-item v-if="row.rejectReason" label="椹冲洖鍘熷洜" :span="2">
       <span class="reject-text">{{ row.rejectReason }}</span>
     </el-descriptions-item>
-    <el-descriptions-item label="鍒涘缓鏃堕棿" :span="2">{{ row.createTime || "鈥�" }}</el-descriptions-item>
+    <el-descriptions-item label="鍒涘缓鏃堕棿" :span="2">{{ dateOnly(row.createTime) }}</el-descriptions-item>
   </el-descriptions>
 
   <el-divider content-position="left">鎶ラ攢鏄庣粏</el-divider>
@@ -43,14 +43,22 @@
 
 <script setup>
 import { computed } from "vue";
+import { formatReimbursementDate } from "../../shared/finReimbursementMappers.js";
 import { expenseCategoryLabel, expenseSubjectLabel, statusLabel, statusTagType } from "../costReimburseUtils.js";
 
 const props = defineProps({
   row: { type: Object, default: () => ({}) },
 });
 
+function dateOnly(val) {
+  return formatReimbursementDate(val) || "鈥�";
+}
+
 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