From c71bbcff67136ff62b5c2bf7c1861d10b1665137 Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期二, 30 十一月 2021 19:27:58 +0800 Subject: [PATCH] fixed: TODO#131224 快速篩選 1. 應記住選擇條件 2. 點選顧問資訊檢視後, 回上一頁時要回到篩選出 顧問的頁面(快速篩選頁面 且已經篩選出顧問) --- PAMapp/components/NavBar.vue | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/PAMapp/components/NavBar.vue b/PAMapp/components/NavBar.vue index d9dfe90..b782eb9 100644 --- a/PAMapp/components/NavBar.vue +++ b/PAMapp/components/NavBar.vue @@ -41,6 +41,8 @@ @Component export default class NavBar extends Vue { @roleStorage.Mutation storageClear!: () => void; + @roleStorage.Mutation storageClearQuickFilter!: () => void; + @roleStorage.Mutation storageClearRecommendConsultant!: () => void; @roleStorage.Getter idToken!: string | null; @roleStorage.Getter currentRole!: string | null; @@ -99,6 +101,8 @@ // TODO: ��TP隤����� ���蝙� fakeLogout(): void { this.storageClear(); + this.storageClearQuickFilter(); + this.storageClearRecommendConsultant(); _.isEqual(this.$route.name, 'index') ? location.reload() : this.$router.push('/'); } } -- Gitblit v1.8.0