一定要先拷贝
let { showLabel, actualValue } = this.record; let show = this.rowData[showLabel]; let actual = this.rowData[actualValue]; const { formGroup } = this.$store.state.right; const { dispatch } = this.$store; let group = _.cloneDeep(formGroup) // 这一步必须, 如果直接 formGroup.map( ... ) 数据响应不到 const newFormGroup = group.map(item => { if (item.componentx === "modal") { item = { ...item, uniqueKey:createUuid() } return (item = { ...item, initValue: show, actualValue: actual }); } else { return item; } }); dispatch("right/updateFormGroup", newFormGroup); this.visible = false;
原文地址:https://www.cnblogs.com/winyh/p/12628925.html
时间: 2024-11-07 02:29:00