gaoluyang
2025-03-13 ac6d1295be85d51f77f8da4d77a3abe717a6dcb7
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>
@@ -116,7 +118,6 @@
      selectAuxiliaryAllByMonth(this.queryParams)
        .then((res) => {
          this.tableLoading = false;
          if (res.code === 201) return;
          this.tableData = res.data;
        })
        .catch(() => {
@@ -132,12 +133,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();
    },
  },