From b77cb967a3ae670fead19a461daa127a8a4647b2 Mon Sep 17 00:00:00 2001
From: chenrui <1187576398@qq.com>
Date: 星期一, 09 六月 2025 16:05:15 +0800
Subject: [PATCH] 回款登记记录修改

---
 src/views/basicData/customerFile/index.vue |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/views/basicData/customerFile/index.vue b/src/views/basicData/customerFile/index.vue
index e3d020f..640d651 100644
--- a/src/views/basicData/customerFile/index.vue
+++ b/src/views/basicData/customerFile/index.vue
@@ -236,16 +236,16 @@
   page.current = 1
   getList()
 }
-const pagination = ({ current, limit }) => {
-  page.current = current;
-  page.size = limit;
+const pagination = (obj) => {
+  page.current = obj.page;
+  page.size = obj.limit;
   getList()
 }
 const getList = () => {
   tableLoading.value = true
   listCustomer({...searchForm.value, ...page}).then(res => {
     tableLoading.value = false
-    tableData.value = res.rows
+    tableData.value = res.records
     total.value = res.total
   })
 }

--
Gitblit v1.9.3