fix(过滤组件): 过滤组件自定义颜色问题
This commit is contained in:
parent
78775b4072
commit
52b33251bc
@ -594,7 +594,11 @@ export default {
|
|||||||
}
|
}
|
||||||
.tree-select-all {
|
.tree-select-all {
|
||||||
padding: 10px 20px 0 24px;
|
padding: 10px 20px 0 24px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
.tree-select-all .el-checkbox__label {
|
||||||
|
color: var(--SelectTreeColor, #606266);
|
||||||
|
}
|
||||||
[aria-disabled='true'] > .el-tree-node__content {
|
[aria-disabled='true'] > .el-tree-node__content {
|
||||||
color: inherit !important;
|
color: inherit !important;
|
||||||
background: transparent !important;
|
background: transparent !important;
|
||||||
|
|||||||
@ -29,8 +29,10 @@
|
|||||||
v-model="checkAll"
|
v-model="checkAll"
|
||||||
:indeterminate="isIndeterminate"
|
:indeterminate="isIndeterminate"
|
||||||
@change="handleCheckAllChange"
|
@change="handleCheckAllChange"
|
||||||
/>
|
>
|
||||||
{{ $t('commons.all') }}
|
{{ $t('commons.all') }}
|
||||||
|
</el-checkbox>
|
||||||
|
|
||||||
|
|
||||||
<el-checkbox-group
|
<el-checkbox-group
|
||||||
v-model="value"
|
v-model="value"
|
||||||
|
|||||||
@ -34,7 +34,7 @@ export default {
|
|||||||
},
|
},
|
||||||
multiple: {
|
multiple: {
|
||||||
handler() {
|
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(() => {
|
const time = setTimeout(() => {
|
||||||
clearTimeout(time)
|
clearTimeout(time)
|
||||||
this.typeTransform().forEach(ele => {
|
this.typeTransform().forEach(ele => {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user