| | |
| | | :row-class-name="rowClassName" |
| | | :row-style="rowStyle" |
| | | :row-key="rowKey" |
| | | :index-method="handleIndex" |
| | | stripe |
| | | style="width: 100%" |
| | | tooltip-effect="dark" |
| | |
| | | pagination({ page, limit }) { |
| | | this.$emit("pagination", { page: page, limit: limit }); |
| | | }, |
| | | handleIndex({ row, index }) { |
| | | // 计算连续序号 |
| | | return (this.page.current - 1) * this.page.size + index + 1; |
| | | }, |
| | | }, |
| | | }; |
| | | </script> |
| | |
| | | :column="column" |
| | | :page="page" |
| | | :tableLoading="tableLoading" |
| | | :height="'calc(100vh - 240px)'" |
| | | :height="'calc(100vh - 250px)'" |
| | | style="padding: 20px; padding-top: 0" |
| | | @pagination="pagination" |
| | | ></lims-table> |