diff --git a/frontend/src/views/app-store/installed/index.vue b/frontend/src/views/app-store/installed/index.vue index a8fbdc69f..83bfc1da0 100644 --- a/frontend/src/views/app-store/installed/index.vue +++ b/frontend/src/views/app-store/installed/index.vue @@ -114,10 +114,6 @@
{{ $t('app.version') }}:{{ installed.version }} -
{{ $t('app.areadyRun') }}: {{ getAge(installed.createdAt) }}
@@ -232,12 +228,17 @@ const changeTag = (key: string) => { }; const search = () => { + loading.value = true; searchReq.page = paginationConfig.currentPage; searchReq.pageSize = paginationConfig.pageSize; - SearchAppInstalled(searchReq).then((res) => { - data.value = res.data.items; - paginationConfig.total = res.data.total; - }); + SearchAppInstalled(searchReq) + .then((res) => { + data.value = res.data.items; + paginationConfig.total = res.data.total; + }) + .finally(() => { + loading.value = false; + }); GetAppTags().then((res) => { tags.value = res.data; });