| | |
| | | :table-loading="tableLoading" |
| | | :page="page" |
| | | style="padding: 0 15px" |
| | | :height="'calc(100vh - 290px)'" |
| | | @pagination="pagination" |
| | | > |
| | | </limsTable> |
| | | </template> |
| | |
| | | selectAuxiliaryAllByMonth(this.queryParams) |
| | | .then((res) => { |
| | | this.tableLoading = false; |
| | | if (res.code === 201) return; |
| | | this.tableData = res.data; |
| | | }) |
| | | .catch(() => { |
| | |
| | | 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(); |
| | | }, |
| | | }, |