Merge pull request #8463 from dataease/pr@dev_color_fix

fix(过滤组件): 过滤组件自定义颜色问题
This commit is contained in:
dataeaseShu 2024-03-12 18:57:02 +08:00 committed by GitHub
commit 5ac3d33943
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 2 deletions

View File

@ -594,7 +594,11 @@ export default {
}
.tree-select-all {
padding: 10px 20px 0 24px;
}
.tree-select-all .el-checkbox__label {
color: var(--SelectTreeColor, #606266);
}
[aria-disabled='true'] > .el-tree-node__content {
color: inherit !important;
background: transparent !important;

View File

@ -29,8 +29,10 @@
v-model="checkAll"
:indeterminate="isIndeterminate"
@change="handleCheckAllChange"
/>
>
{{ $t('commons.all') }}
</el-checkbox>
<el-checkbox-group
v-model="value"

View File

@ -34,7 +34,7 @@ export default {
},
multiple: {
handler() {
if (!['de-select-tree', 'de-select'].includes(this.element.component)) return
if (!['de-select-tree', 'de-select', 'de-select-grid'].includes(this.element.component)) return
const time = setTimeout(() => {
clearTimeout(time)
this.typeTransform().forEach(ele => {