spring
2025-02-18 0c296ab5e1e4ed1eaab1940f85959ed66f68fbe7
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();
    },
  },