mirror of https://github.com/ElemeFE/element
fix: cascader lazyLoad radio check expand
parent
f14b5ba540
commit
b0118ddb73
|
@ -75,9 +75,11 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
handleCheckChange() {
|
handleCheckChange() {
|
||||||
const { panel, value, node } = this;
|
const { panel, value, node, config } = this;
|
||||||
panel.handleCheckChange(value);
|
panel.handleCheckChange(value);
|
||||||
panel.handleExpand(node);
|
if (!config.lazy) {
|
||||||
|
panel.handleExpand(node);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
handleMultiCheckChange(checked) {
|
handleMultiCheckChange(checked) {
|
||||||
|
|
Loading…
Reference in New Issue