2018-07-30 10:32:18 +08:00

29 lines
545 B
JavaScript

Component({
relations: {
'../button/index': {
type: 'child',
linked() {
updateBtnChild.call(this);
},
linkChange() {
updateBtnChild.call(this);
},
unlinked() {
updateBtnChild.call(this);
}
}
}
});
function updateBtnChild() {
let buttons = this.getRelationNodes('../button/index');
if (buttons.length > 0) {
let lastIndex = buttons.length - 1;
buttons.forEach((button, index) => {
button.switchLastButtonStatus(index === lastIndex);
});
}
}