| | |
| | | :column="column" |
| | | :page="page" |
| | | :tableLoading="tableLoading" |
| | | :height="'calc(100vh - 240px)'" |
| | | :height="'calc(100vh - 250px)'" |
| | | style="padding: 20px; padding-top: 0" |
| | | @pagination="pagination" |
| | | ></lims-table> |
| | |
| | | delStandardTemplate, |
| | | getEditTemplatePreparation, |
| | | } from "@/api/standard/model"; |
| | | import { checkPermi } from "@/utils/permission"; // 权限判断函数 |
| | | export default { |
| | | components: { |
| | | Excel, |
| | |
| | | dataType: "action", |
| | | fixed: "right", |
| | | label: "操作", |
| | | width: "320px", |
| | | operation: [ |
| | | { |
| | | name: "编辑", |
| | |
| | | this.getList(); |
| | | }, |
| | | methods: { |
| | | checkPermi, |
| | | getList() { |
| | | this.tableLoading = true; |
| | | let param = { ...this.queryParams, ...this.page }; |
| | |
| | | }, |
| | | pagination({ page, limit }) { |
| | | this.page.current = page; |
| | | this.page.size = limit; |
| | | this.getList(); |
| | | }, |
| | | refreshTable(e) { |