From 482ed6306545c04f9051372c44dca537bf7ce44e Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期六, 12 七月 2025 11:27:55 +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