From f63beb776e12cf358a011a026dbd556c39765952 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Fri, 19 Apr 2024 08:24:57 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E8=AE=A2=E9=98=85=E5=8E=86=E5=8F=B2?= =?UTF-8?q?=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components.d.ts | 1 + src/@core/components/LoadingBanner.vue | 28 +++++++ src/App.vue | 5 -- .../dialog/SubscribeHistoryDialog.vue | 81 ++++++++++++++----- src/main.ts | 5 ++ src/pages/resource.vue | 11 +-- src/views/discover/MediaCardListView.vue | 12 +-- src/views/discover/MediaDetailView.vue | 24 ++---- src/views/discover/PersonCardListView.vue | 12 +-- src/views/discover/PersonDetailView.vue | 12 +-- src/views/plugin/PluginCardListView.vue | 26 ++---- src/views/reorganize/DownloadingListView.vue | 13 +-- src/views/site/SiteCardListView.vue | 13 +-- src/views/subscribe/SubscribeListView.vue | 14 +--- 14 files changed, 131 insertions(+), 126 deletions(-) create mode 100644 src/@core/components/LoadingBanner.vue diff --git a/components.d.ts b/components.d.ts index 842ae72d..adba0235 100644 --- a/components.d.ts +++ b/components.d.ts @@ -10,6 +10,7 @@ declare module 'vue' { DialogCloseBtn: typeof import('./src/@core/components/DialogCloseBtn.vue')['default'] ErrorHeader: typeof import('./src/@core/components/ErrorHeader.vue')['default'] ExistIcon: typeof import('./src/@core/components/ExistIcon.vue')['default'] + LoadingBanner: typeof import('./src/@core/components/LoadingBanner.vue')['default'] MoreBtn: typeof import('./src/@core/components/MoreBtn.vue')['default'] RouterLink: typeof import('vue-router')['RouterLink'] RouterView: typeof import('vue-router')['RouterView'] diff --git a/src/@core/components/LoadingBanner.vue b/src/@core/components/LoadingBanner.vue new file mode 100644 index 00000000..8e97558c --- /dev/null +++ b/src/@core/components/LoadingBanner.vue @@ -0,0 +1,28 @@ + + + diff --git a/src/App.vue b/src/App.vue index 55cea95f..37b1e115 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,13 +1,8 @@