主表中人员组件开启多选按钮,如何通过代码填充到子表的人员组件中(未开启多选,一人占一行)
问题已解决,代码修改如下
export function onChange({ value }) {
console.log('onChange', value);
var newValue = []
value.forEach((item) => {
newValue.push({
value: item.value,
label: item.label
})
})
console.log('newValue', newValue);
//填充子表单
const arr = newValue.map((item, index) => {
const a = [
{ value: newValue[index].value, label: newValue[index].label }
]
console.log('a', a);
return {
employeeField_lila8ke4: a
}
})
this.$('tableField_lila8ke3').setValue(arr);
赞3
踩0