// 更新姓名
updateName: function (e) {
const index = e.currentTarget.dataset.index;
const value = e.detail.value;
this.setData({
[`rows[${index}].name`]: value
});
},
// 更新年龄
updateAge: function (e) {
const index = e.currentTarget.dataset.index;
const value = e.detail.value;
this.setData({
[`rows[${index}].age`]: value
});
},
// 更新性别
updateGender: function (e) {
const index = e.currentTarget.dataset.index;
const value = e.detail.value;
this.setData({
[`rows[${index}].gender`]: value
});
},