From 7e83bab154e23fe8176af2326f90f9ee0aec681b Mon Sep 17 00:00:00 2001 From: 曹睿 <360930172@qq.com> Date: 星期二, 01 七月 2025 10:13:15 +0800 Subject: [PATCH] style: 销售台账时间改成时间段 --- src/views/procurementManagement/procurementInvoiceLedger/index.vue | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/views/procurementManagement/procurementInvoiceLedger/index.vue b/src/views/procurementManagement/procurementInvoiceLedger/index.vue index 6c8afa3..339b020 100644 --- a/src/views/procurementManagement/procurementInvoiceLedger/index.vue +++ b/src/views/procurementManagement/procurementInvoiceLedger/index.vue @@ -56,7 +56,7 @@ total: 0, }" @selection-change="handleSelectionChange" - @pagination="onCurrentChange" + @pagination="changePage" > <template #commonFilesRef="{ row }"> <el-button @@ -238,6 +238,11 @@ }); }; +const changePage = ({ page }) => { + pagination.currentPage = page; + onCurrentChange(page); +}; + onMounted(() => { getTableData(); }); -- Gitblit v1.9.3