zhengyiming
2025-08-06 cb795c5827f6e7c0e4d2c1358f27d0862f502b5b
1
2
3
4
5
6
7
8
import { useQuery, useQueryClient } from '@tanstack/vue-query';
import { SearchType } from '@/constants';
 
type UseSearchSettingTypeOptions = {
  searchType: number;
  belongType?: number;
  onSuccess?: (data: any[]) => any;
};