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 @@