From 240fa2b20900b8c2542f6bc5d912d7f647ad0b64 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期三, 19 二月 2025 16:31:18 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev' into dev
---
src/views/standard/model/index.vue | 10 ++++------
1 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/src/views/standard/model/index.vue b/src/views/standard/model/index.vue
index 375cd35..1d9f42c 100644
--- a/src/views/standard/model/index.vue
+++ b/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) {
--
Gitblit v1.9.3