From 3a305b4a7e6c79202cda932cb1e2de01ec3e8dd4 Mon Sep 17 00:00:00 2001 From: caoqianming Date: Fri, 24 Apr 2026 08:20:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=88=97=E8=A1=A8=E9=A1=B5=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E6=AF=8F=E9=A1=B5=2020=20=E6=9D=A1=EF=BC=8C=E7=BB=9F?= =?UTF-8?q?=E4=B8=80=E5=88=86=E9=A1=B5=E8=A7=84=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 --- frontend/src/views/BrandManage.vue | 2 +- frontend/src/views/FactoryManage.vue | 2 +- frontend/src/views/MaterialManage.vue | 2 +- frontend/src/views/UserManage.vue | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/views/BrandManage.vue b/frontend/src/views/BrandManage.vue index 25e7b0f..145247a 100644 --- a/frontend/src/views/BrandManage.vue +++ b/frontend/src/views/BrandManage.vue @@ -75,7 +75,7 @@ const brands = ref([]) const tableLoading = ref(false) const pagination = reactive({ page: 1, - pageSize: 10, + pageSize: 20, total: 0 }) const filters = reactive({ search: '' }) diff --git a/frontend/src/views/FactoryManage.vue b/frontend/src/views/FactoryManage.vue index a40589b..d70077d 100644 --- a/frontend/src/views/FactoryManage.vue +++ b/frontend/src/views/FactoryManage.vue @@ -96,7 +96,7 @@ const factories = ref([]) const tableLoading = ref(false) const pagination = reactive({ page: 1, - pageSize: 10, + pageSize: 20, total: 0 }) const dialogVisible = ref(false) diff --git a/frontend/src/views/MaterialManage.vue b/frontend/src/views/MaterialManage.vue index 8dcd350..1db5160 100644 --- a/frontend/src/views/MaterialManage.vue +++ b/frontend/src/views/MaterialManage.vue @@ -315,7 +315,7 @@ const materials = ref([]) const tableLoading = ref(false) const pagination = reactive({ page: 1, - pageSize: 10, + pageSize: 20, total: 0 }) const factories = ref([]) diff --git a/frontend/src/views/UserManage.vue b/frontend/src/views/UserManage.vue index 2092bee..11f6290 100644 --- a/frontend/src/views/UserManage.vue +++ b/frontend/src/views/UserManage.vue @@ -86,7 +86,7 @@ const users = ref([]) const tableLoading = ref(false) const pagination = reactive({ page: 1, - pageSize: 10, + pageSize: 20, total: 0 }) const factories = ref([])