| | |
| | | FieldRadio, |
| | | } from '@bole-core/components'; |
| | | import { useAccess } from '@/hooks'; |
| | | import * as searchSettingServices from '@/services/api/SearchSetting'; |
| | | import { |
| | | SearchType, |
| | | SearchTypeText, |
| | |
| | | import AddOrEditSearchSetting from './components/AddOrEditSearchSetting.vue'; |
| | | import { convertApi2FormUrl } from '@/utils'; |
| | | import { useQueryClient } from '@tanstack/vue-query'; |
| | | import { useSearchSettingType } from '@/hooks'; |
| | | |
| | | defineOptions({ |
| | | name: 'SearchSetting', |
| | |
| | | loading: true, |
| | | }; |
| | | const queryClient = useQueryClient(); |
| | | const { searchSettingTypeList: typeList } = useSearchSettingType({ |
| | | searchType: SearchType.IndustryCategory, |
| | | }); |
| | | const typeList = ref([]); |
| | | const state = reactive({ ...BaseState }); |
| | | |
| | | onMounted(async () => { |