瀏覽代碼

Merge branch 'fix_bug_5376_dw' into debug_dw

jwyu 7 月之前
父節點
當前提交
153d42bb7c
共有 1 個文件被更改,包括 10 次插入2 次删除
  1. 10 2
      src/layout/components/NoticeWrap.vue

+ 10 - 2
src/layout/components/NoticeWrap.vue

@@ -1,8 +1,9 @@
 <script setup>
 import { apiSystemMessage } from '@/api/system'
-import { useRouter } from 'vue-router'
+import { useRouter , useRoute } from 'vue-router'
 
 const router=useRouter()
+const route=useRoute()
 
 const emits=defineEmits(['change'])
 
@@ -19,7 +20,14 @@ function getMsgList() {
 getMsgList()
 
 function handleGoCustomerDetail(e){
-  router.push('/customer/userDetail?id=' + e.UserId)
+  if(route.path==='/customer/userDetail'){
+    router.replace('/customer/userDetail?id=' + e.UserId)
+    setTimeout(() => {
+      router.go(0)
+    }, 50);
+  }else{
+    router.push('/customer/userDetail?id=' + e.UserId)
+  }
 }