From 43f105070cf75a057d1d0ce4ff330c3b19a21ab0 Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期六, 12 七月 2025 13:45:52 +0800 Subject: [PATCH] 1.付款登记-优化:删除权限优化 --- src/views/salesManagement/receiptPaymentHistory/index.vue | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/salesManagement/receiptPaymentHistory/index.vue b/src/views/salesManagement/receiptPaymentHistory/index.vue index f0dc1de..ea373ea 100644 --- a/src/views/salesManagement/receiptPaymentHistory/index.vue +++ b/src/views/salesManagement/receiptPaymentHistory/index.vue @@ -56,7 +56,7 @@ :isShowSummary="isShowSummarySon" :summaryMethod="summarizeMainTable1" :tableLoading="tableLoading" - :total="total" + :total="page.total" @pagination="pagination" @selection-change="handleSelectionChange" ></PIMTable> @@ -139,6 +139,7 @@ const page = reactive({ current: 1, size: 100, + total: 0, }); const total = ref(0); @@ -174,7 +175,7 @@ receiptPaymentHistoryListPage({ ...rest, ...page }).then((res) => { tableLoading.value = false; tableData.value = res.records; - total.value = res.total; + page.total = res.total; }); }; // 瀛愯〃鍚堣鏂规硶 -- Gitblit v1.9.3