소스 검색

修复bug

lxr 2 달 전
부모
커밋
7147b54f41
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/layouts/components/Header/components/NotificationDrawerContent.vue

+ 2 - 2
src/layouts/components/Header/components/NotificationDrawerContent.vue

@@ -687,8 +687,8 @@ async function handleViewDetail(item: NoticeItem) {
     }
   }
 
-  // 系统通知 - 意见反馈回复通知:跳转反馈详情页(与商家端 s-informList 一致)
-  if (activeCategory.value === "system" && item.feedbackId != null) {
+  // 意见反馈回复通知:跳转反馈详情页
+  if (item.title === "意见反馈回复通知" && item.feedbackId != null) {
     emit("close");
     router.push({ path: "/feedback/detail", query: { id: String(item.feedbackId) } });
     return;