fix: 样式优化

This commit is contained in:
dataeaseShu
2026-04-21 16:00:02 +08:00
committed by dataeaseShu
parent 784ee854f0
commit aa81f728bc
2 changed files with 6 additions and 2 deletions

View File

@@ -271,7 +271,7 @@ const getOperator = (
firstLoad
) => {
if (+displayType === 9) {
return multiple ? 'in' : 'eq'
return 'in'
}
if (+displayType === 22) {
@@ -295,7 +295,7 @@ const getOperator = (
return valueF === '' ? operatorS : operatorF
}
return [1, 7].includes(+displayType) ? 'between' : multiple ? 'in' : 'eq'
return [1, 7].includes(+displayType) ? 'between' : 'in'
}
const duplicateRemoval = arr => {

View File

@@ -849,3 +849,7 @@ strong {
border-color: #e5e6eb;
}
}
.ed-dialog__headerbtn {
border-radius: 6px !important;
}