From 6f83ace91841d7c46894583410dfcd5cad7dbe55 Mon Sep 17 00:00:00 2001 From: pyt <626651354@qq.com> Date: 星期三, 23 四月 2025 15:09:12 +0800 Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/leshan-laboratory --- src/components/TableSlot/index.vue | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/TableSlot/index.vue b/src/components/TableSlot/index.vue index e3d2130..c2fa491 100644 --- a/src/components/TableSlot/index.vue +++ b/src/components/TableSlot/index.vue @@ -12,11 +12,14 @@ </div> </template> <template v-if="$slots.table"> - <Table :data="tableData" :total="total" :height="height" :queryForm="queryForm" @currentChange="handleCurrentChange" - @sizeChange="handleSizeChange"> + <Table :data="tableData" :total="total" :height="height" :queryForm="queryForm" + @currentChange="handleCurrentChange" @sizeChange="handleSizeChange"> <slot name="table"></slot> </Table> </template> + <template v-if="$slots.tableCustom"> + <slot name="tableCustom"></slot> + </template> </div> </div> </template> -- Gitblit v1.7.1