From 50872e002b966273a263092f8e074e17f7aa6e5d Mon Sep 17 00:00:00 2001 From: guoapeng Date: Wed, 4 Jun 2025 13:43:29 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=BA=B6=E6=B6=B2=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E5=88=86=E9=A1=B5;=20=E6=B7=BB=E5=8A=A0=E6=BA=B6=E6=B6=B2?= =?UTF-8?q?=E5=9B=9E=E6=98=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apis/solution.ts | 2 +- src/components/container/Item/index.vue | 14 +++++++------- src/components/home/AddLiquid/index.vue | 4 +++- src/stores/systemStore.ts | 24 ++++++++++++------------ src/views/container/index.vue | 3 ++- 5 files changed, 25 insertions(+), 22 deletions(-) diff --git a/src/apis/solution.ts b/src/apis/solution.ts index 45f70d2..2b01542 100644 --- a/src/apis/solution.ts +++ b/src/apis/solution.ts @@ -1,6 +1,6 @@ import http from 'libs/http' -export const getSolsList = (): Promise> => http.get(`/sols/list`) +export const getSolsList = (params: System.Page = { pageNum: 1, pageSize: 999 }): Promise> => http.get(`/sols/list`, { params }) export const saveSols = (params: { name: string }): Promise => http.post(`/sols`, params) diff --git a/src/components/container/Item/index.vue b/src/components/container/Item/index.vue index effc3e0..f7a5da1 100644 --- a/src/components/container/Item/index.vue +++ b/src/components/container/Item/index.vue @@ -1,9 +1,8 @@