spring
2025-02-19 d68551caef23bd5d3c00035d7add3814f0fdece1
src/views/standard/model/index.vue
@@ -40,7 +40,7 @@
      :column="column"
      :page="page"
      :tableLoading="tableLoading"
      :height="'calc(100vh - 240px)'"
      :height="'calc(100vh - 250px)'"
      style="padding: 20px; padding-top: 0"
      @pagination="pagination"
    ></lims-table>
@@ -109,7 +109,6 @@
  delStandardTemplate,
  getEditTemplatePreparation,
} from "@/api/standard/model";
import { checkPermi } from "@/utils/permission"; // 权限判断函数
export default {
  components: {
    Excel,
@@ -153,7 +152,6 @@
          dataType: "action",
          fixed: "right",
          label: "操作",
          width: "320px",
          operation: [
            {
              name: "编辑",
@@ -217,7 +215,6 @@
    this.getList();
  },
  methods: {
    checkPermi,
    getList() {
      this.tableLoading = true;
      let param = { ...this.queryParams, ...this.page };
@@ -234,8 +231,9 @@
          this.tableLoading = false;
        });
    },
    pagination(current, size) {
      this.page.current = current;
    pagination({ page, limit }) {
      this.page.current = page;
      this.page.size = limit;
      this.getList();
    },
    refreshTable(e) {