fix(图表): URL 字段类型应该使用字符类型的过滤操作

This commit is contained in:
wisonic 2024-09-04 21:25:54 +08:00
parent 3bdeab6f9f
commit 7497e16618
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ const operators = computed(() => {
if (authTargetType.value === 'sysParams') { if (authTargetType.value === 'sysParams') {
return textOptionsForSysParams return textOptionsForSysParams
} }
if ([0, 5].includes(deType)) { if ([0, 5, 7].includes(deType)) {
return textOptions return textOptions
} else if (deType === 1) { } else if (deType === 1) {
return dateOptions return dateOptions

View File

@ -740,7 +740,7 @@ const tablePageClass = computed(() => {
justify-content: center; justify-content: center;
} }
.antv-s2-tooltip-container { .antv-s2-tooltip-container {
max-width: 80px; max-width: 400px;
min-width: 80px; min-width: 80px;
} }
</style> </style>