假如在子表单中,我们修改了某一行的某个组件值,希望在子表单的onChange事件中获得这一行其他组件值,该怎么办呢?
// 子表单绑定事件
export function onChange({
value, extra}) {
// formGroupId 当前操作行的识别ID
const {
formGroupId } = extra || {
};
// 判断是否是设备字段变化
const currentRow = this.$('子表单唯一标识').getItemValue(formGroupId)
}