fix(仪表板): 明细表的分页,可以自定义输入跳转到多少页 #9672

This commit is contained in:
dataeaseShu 2024-06-14 14:25:49 +08:00
parent 1c70e9dbe8
commit a5d04ee71e

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'
)
})