From 0c296ab5e1e4ed1eaab1940f85959ed66f68fbe7 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期二, 18 二月 2025 09:39:36 +0800
Subject: [PATCH] 完成工时管理搬迁

---
 src/views/performance/manHour/workTimeStatistics.vue |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/src/views/performance/manHour/workTimeStatistics.vue b/src/views/performance/manHour/workTimeStatistics.vue
index 4425caf..daffdf6 100644
--- a/src/views/performance/manHour/workTimeStatistics.vue
+++ b/src/views/performance/manHour/workTimeStatistics.vue
@@ -45,6 +45,8 @@
               :table-loading="tableLoading"
               :page="page"
               style="padding: 0 15px"
+              :height="'calc(100vh - 290px)'"
+              @pagination="pagination"
             >
             </limsTable>
           </template>
@@ -132,12 +134,9 @@
       this.refreshTable();
     },
     // 鍒嗛〉
-    handleCurrent(page) {
-      this.pagination.curent = page;
-      this.refreshTable();
-    },
-    handleSizeChange(size) {
-      this.pagination.pageSize = size;
+    pagination({ page, limit }) {
+      this.page.current = page;
+      this.page.size = limit;
       this.refreshTable();
     },
   },

--
Gitblit v1.9.3