Merge pull request #13014 from dataease/pr@dev-v2_dzz

Pr@dev v2 dzz
This commit is contained in:
dataeaseShu 2024-10-30 16:18:38 +08:00 committed by GitHub
commit 3b7a36d920
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -30,9 +30,9 @@ const props = defineProps({
}
},
timeGranularityMultiple: {
type: Object as PropType<DatePickType>,
type: String as PropType<DatePickType>,
default: () => {
return { type: 'yearrange' } as PropType<DatePickType>
return 'yearrange'
}
}
})

View File

@ -39,9 +39,9 @@ const props = defineProps({
}
},
timeGranularityMultiple: {
type: Object as PropType<DatePickType>,
type: String as PropType<DatePickType>,
default: () => {
return { type: 'yearrange' } as PropType<DatePickType>
return 'yearrange'
}
}
})