Merge pull request #10290 from dataease/pr@dev-v2_st

fix(仪表板): 明细表的分页,可以自定义输入跳转到多少页 #9672
This commit is contained in:
dataeaseShu 2024-06-14 14:26:50 +08:00 committed by GitHub
commit 47743296c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -469,8 +469,8 @@ const tabStyle = computed(() => [
const tablePageClass = computed(() => {
return (
['#ffffff', '#A6A6A6FF'].includes(
canvasStyleData.value.component.seniorStyleSetting?.pagerColor
['#ffffff', '#ffffffff', '#a6a6a6ff'].includes(
canvasStyleData.value.component.seniorStyleSetting?.pagerColor.toLowerCase()
) && 'table-page-info_dark'
)
})