From 74beb47ad5118a46a0fc433265040c13b1bd4f20 Mon Sep 17 00:00:00 2001 From: buvta <12312540+buvta@users.noreply.github.com> Date: Sun, 13 Dec 2020 15:01:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20film=E6=90=9C=E7=B4=A2=E5=88=87=E6=8D=A2?= =?UTF-8?q?=E5=9B=9E=E6=B5=B7=E6=8A=A5=E6=A8=A1=E5=BC=8F=E6=97=B6=E9=83=A8?= =?UTF-8?q?=E5=88=86=E5=8D=A1=E7=89=87=E8=A2=AB=E9=81=AE=E6=8E=A9=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E4=B8=8D=E5=85=A8=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Film.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Film.vue b/src/components/Film.vue index 1a4c8a7..0ba8b98 100644 --- a/src/components/Film.vue +++ b/src/components/Film.vue @@ -518,6 +518,7 @@ export default { toggleViewMode () { if (this.showFind) { this.setting.searchViewMode = this.setting.searchViewMode === 'picture' ? 'table' : 'picture' + setTimeout(() => { if (this.$refs.filmSearchWaterfall) this.$refs.filmSearchWaterfall.refresh() }, 1000) } else { this.setting.view = this.setting.view === 'picture' ? 'table' : 'picture' }