소스 검색

首页搜索框清除内容时不需要跳转

Xiao_123 2 일 전
부모
커밋
492ff9ec7b
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/components/headSearch/index.vue

+ 1 - 0
src/components/headSearch/index.vue

@@ -81,6 +81,7 @@ watch(() => sharedState.layoutClickCount, () => {
 });
 
 const handleSearch = () => {
+  if (route.path === '/recruitHome') return
   const name = value.value ? value.value.includes('&') ? encodeURIComponent(value.value) : value.value : ''
   emits('handleSearch', name)
 }