From a9c3543f4b4fa5a092a8dea688aedc2b2adbd576 Mon Sep 17 00:00:00 2001
From: 曹睿 <360930172@qq.com>
Date: 星期二, 24 六月 2025 17:34:50 +0800
Subject: [PATCH] feat: 【来票台账】显示附件
---
src/views/procurementManagement/procurementInvoiceLedger/index.vue | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/src/views/procurementManagement/procurementInvoiceLedger/index.vue b/src/views/procurementManagement/procurementInvoiceLedger/index.vue
index d161978..b71bec0 100644
--- a/src/views/procurementManagement/procurementInvoiceLedger/index.vue
+++ b/src/views/procurementManagement/procurementInvoiceLedger/index.vue
@@ -58,6 +58,13 @@
@selection-change="handleSelectionChange"
@pagination="onCurrentChange"
>
+ <template #commonFilesRef="{ row }">
+ <div v-for="item in row.commonFiles">
+ <el-tag type="primary" class="tagBox">
+ {{ item.name }}
+ </el-tag>
+ </div>
+ </template>
</PIMTable>
</div>
</div>
@@ -158,6 +165,14 @@
prop: "invoiceAmount",
align: "center",
},
+ {
+ label: "闄勪欢",
+ align: "center",
+ prop: "commonFiles",
+ dataType: "slot",
+ slot: "commonFilesRef",
+ width: 200,
+ },
// {
// fixed: "right",
// width: 120,
@@ -223,4 +238,7 @@
.table_list {
margin-top: unset;
}
+.tagBox {
+ margin-top: 4px;
+}
</style>
--
Gitblit v1.9.3