From a559cab9fbb071113af631b2955b4902a8afd776 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Wed, 22 Sep 2021 11:03:25 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=85=A8=E9=83=A8=E5=B7=B2=E8=AF=BB?= =?UTF-8?q?=E6=88=96=E6=A0=87=E8=AE=B0=E5=B7=B2=E8=AF=BB=E5=AE=9E=E6=97=B6?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=A1=B6=E9=83=A8=E6=9C=AA=E8=AF=BB=E6=95=B0?= =?UTF-8?q?=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/msg/unread.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/views/msg/unread.vue b/frontend/src/views/msg/unread.vue index c5500bc8b2..c322b7eb63 100644 --- a/frontend/src/views/msg/unread.vue +++ b/frontend/src/views/msg/unread.vue @@ -169,6 +169,7 @@ export default { allMarkReaded() { allRead().then(res => { this.$success(this.$t('webmsg.mark_success')) + bus.$emit('refresh-top-notification') this.search() }) }, @@ -180,6 +181,7 @@ export default { const param = this.multipleSelection.map(item => item.msgId) batchRead(param).then(res => { this.$success(this.$t('webmsg.mark_success')) + bus.$emit('refresh-top-notification') this.search() }) },