From 529095e014d4478c5ce34911c25fb68fd69e9e09 Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Thu, 27 Oct 2022 18:01:45 +0700 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=BA?= =?UTF-8?q?=D0=B8=20=D1=80=D0=B0=D0=B7=D0=BC=D0=B5=D1=82=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Search/AuthorList/AuthorList.vue | 2 +- client/components/Search/Search.vue | 31 ++++++++++--------- .../Search/SeriesList/SeriesList.vue | 2 +- .../components/Search/TitleList/TitleList.vue | 10 ++---- 4 files changed, 21 insertions(+), 24 deletions(-) diff --git a/client/components/Search/AuthorList/AuthorList.vue b/client/components/Search/AuthorList/AuthorList.vue index 0ca25cc..4fbe4ba 100644 --- a/client/components/Search/AuthorList/AuthorList.vue +++ b/client/components/Search/AuthorList/AuthorList.vue @@ -152,7 +152,7 @@ class AuthorList extends BaseList { } get foundCountMessage() { - return `Найден${utils.wordEnding(this.list.totalFound, 2)} ${this.list.totalFound} автор${utils.wordEnding(this.list.totalFound)}`; + return `Всего найден${utils.wordEnding(this.list.totalFound, 2)} ${this.list.totalFound} автор${utils.wordEnding(this.list.totalFound)}`; } isFoundSeriesBook(seriesItem, seriesBook) { diff --git a/client/components/Search/Search.vue b/client/components/Search/Search.vue index e877e75..e0b6217 100644 --- a/client/components/Search/Search.vue +++ b/client/components/Search/Search.vue @@ -94,16 +94,6 @@ {{ `${(extendedParams ? 'Скрыть' : 'Показать')} дополнительные критерии поиска` }} - -
-
-
- {{ foundCountMessage }} -
-
- Ничего не найдено -
-
-
- +
+
+ +
+ +
+
+ {{ foundCountMessage }} +
+
- +
+

+ +

+
-
+
-
diff --git a/client/components/Search/SeriesList/SeriesList.vue b/client/components/Search/SeriesList/SeriesList.vue index 5427a03..c91c09d 100644 --- a/client/components/Search/SeriesList/SeriesList.vue +++ b/client/components/Search/SeriesList/SeriesList.vue @@ -117,7 +117,7 @@ import _ from 'lodash'; class SeriesList extends BaseList { get foundCountMessage() { - return `Найден${utils.wordEnding(this.list.totalFound, 4)} ${this.list.totalFound} сери${utils.wordEnding(this.list.totalFound, 1)}`; + return `Всего найден${utils.wordEnding(this.list.totalFound, 4)} ${this.list.totalFound} сери${utils.wordEnding(this.list.totalFound, 1)}`; } isFoundSeriesBook(seriesItem, seriesBook) { diff --git a/client/components/Search/TitleList/TitleList.vue b/client/components/Search/TitleList/TitleList.vue index 537354f..13d887d 100644 --- a/client/components/Search/TitleList/TitleList.vue +++ b/client/components/Search/TitleList/TitleList.vue @@ -8,14 +8,14 @@