From 2f8b4e72b8e774722a73b1831c5994dcd7a271d3 Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Wed, 24 Aug 2022 22:45: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?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/components/Search/Search.vue | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/client/components/Search/Search.vue b/client/components/Search/Search.vue index 0eb25e2..07d10e5 100644 --- a/client/components/Search/Search.vue +++ b/client/components/Search/Search.vue @@ -123,10 +123,7 @@
- {{ row.title }} -
-
- {{ row.src }} + {{ row.title }} {{ row.src.del }}
@@ -231,6 +228,8 @@ class Search { {label: '20', value: 20}, {label: '50', value: 50}, {label: '100', value: 100}, + {label: '200', value: 200}, + {label: '500', value: 500}, {label: '1000', value: 1000}, ]; @@ -380,7 +379,7 @@ class Search { try { const result = await this.api.getBookList(authorId); - return result.books; + return JSON.parse(result.books); } catch (e) { this.$root.stdDialog.alert(e.message, 'Ошибка'); }