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