mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
29 lines
524 B
JavaScript
29 lines
524 B
JavaScript
Component({
|
|
relations: {
|
|
'../btn/index': {
|
|
type: 'child',
|
|
linked () {
|
|
updateBtnChild.call(this);
|
|
},
|
|
linkChange() {
|
|
updateBtnChild.call(this);
|
|
},
|
|
unlinked() {
|
|
updateBtnChild.call(this);
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
function updateBtnChild() {
|
|
let btns = this.getRelationNodes('../btn/index')
|
|
|
|
if (btns.length > 0) {
|
|
let lastIndex = btns.length - 1
|
|
|
|
btns.forEach((btn, index) => {
|
|
btn.switchLastButtonStatus(index === lastIndex);
|
|
});
|
|
}
|
|
}
|