mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
45 lines
890 B
JavaScript
45 lines
890 B
JavaScript
Component({
|
|
relations: {
|
|
'../cell/index': {
|
|
type: 'child',
|
|
linked() {
|
|
this._updateIsLastCell();
|
|
},
|
|
linkChanged() {
|
|
this._updateIsLastCell();
|
|
},
|
|
unlinked() {
|
|
this._updateIsLastCell();
|
|
}
|
|
}
|
|
},
|
|
|
|
data: {
|
|
cellUpdateTimeout: 0
|
|
},
|
|
|
|
methods: {
|
|
_updateIsLastCell() {
|
|
// 用 setTimeout 减少计算次数
|
|
if (this.data.cellUpdateTimeout > 0) {
|
|
return;
|
|
}
|
|
|
|
const cellUpdateTimeout = setTimeout(() => {
|
|
this.setData({ cellUpdateTimeout: 0 });
|
|
let cells = this.getRelationNodes('../cell/index');
|
|
|
|
if (cells.length > 0) {
|
|
let lastIndex = cells.length - 1;
|
|
|
|
cells.forEach((cell, index) => {
|
|
cell.updateIsLastCell(index === lastIndex);
|
|
});
|
|
}
|
|
});
|
|
|
|
this.setData({ cellUpdateTimeout });
|
|
}
|
|
}
|
|
});
|