Merge branch 'development'
This commit is contained in:
commit
445c97cca0
2 changed files with 6 additions and 7 deletions
|
|
@ -21,13 +21,14 @@ const props = defineProps<{
|
|||
AND: {
|
||||
field: string
|
||||
value: string
|
||||
exact: boolean
|
||||
exact?: boolean
|
||||
}[]
|
||||
OR: {
|
||||
field: string
|
||||
value: string
|
||||
exact: boolean
|
||||
exact?: boolean
|
||||
}[]
|
||||
exact?: boolean
|
||||
}
|
||||
}>()
|
||||
|
||||
|
|
|
|||
|
|
@ -31,11 +31,9 @@ const optionsField = [
|
|||
{ label: 'หมวดหมู่ (category)', value: 'category' },
|
||||
{ label: 'เนื้อหาในไฟล์ (content)', value: 'attachment.content' },
|
||||
]
|
||||
const submitSearchData = ref<{
|
||||
AND: { field: string; value: string; exact?: boolean }[]
|
||||
OR: { field: string; value: string; exact?: boolean }[]
|
||||
exact?: boolean
|
||||
}>({
|
||||
const submitSearchData = ref<
|
||||
InstanceType<typeof AdvancedSearch>['submitSearchData']
|
||||
>({
|
||||
AND: [],
|
||||
OR: [],
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue