this.ruleForm = JSON.parse(JSON.stringify(obj))
点击编辑之后 修改内容 但是没保存 页面显示部分 实时更新了
解决回显问题
解决之前:
edit (obj) { // 编辑弹层函数
this.subType = 1
this.ruleForm = obj // 解决之前写法 (赋值)
// this.ruleForm = JSON.parse(JSON.stringify(obj))
this.drawer = true
this.drawerTitle = '编辑人员'
this.drawerButton = '保存'
this.contentTex = obj.contentTex
}
解决之后:
edit (obj) { // 编辑弹层函数
this.subType = 1
// this.ruleForm = obj
this.ruleForm = JSON.parse(JSON.stringify(obj)) // 深拷贝,解决后(赋值)
this.drawer = true
this.drawerTitle = '编辑人员'
this.drawerButton = '保存'
this.contentTex = obj.contentTex
}