From 0858561edd7d079f4c85ccf688511f41fcba206b Mon Sep 17 00:00:00 2001 From: lilydjwg Date: Wed, 6 Oct 2021 23:20:06 +0800 Subject: [PATCH] better info --- src/App.svelte | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/src/App.svelte b/src/App.svelte index b1e1e21..11f5062 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -145,11 +145,17 @@
{error}
{/if} - {#if loading} -

正在加载...

- {:else if result && result.has_more} -
- {/if} +
+ {#if loading} +

正在加载...

+ {:else if result && result.has_more} + + {:else if result && !result.has_more} +

到底了。

+ {:else if result && result.messages.length == 0} +

没有匹配的消息。

+ {/if} +