[update] 修改bug81196

This commit is contained in:
lideqin
2024-01-29 16:41:46 +08:00
parent e73a09931b
commit 79c32f4533
2 changed files with 2 additions and 2 deletions
@@ -143,7 +143,7 @@ export default {
this.form.validateFields((err, values) => {
if (!err) {
this.confirmLoading = true
const param = Object.assign({}, values)
const param = Object.assign({}, this.model, values)
console.log(param)
this.$emit('ok', param, this.index)
this.close()
@@ -138,7 +138,7 @@ export default {
this.form.validateFields((err, values) => {
if (!err) {
this.confirmLoading = true
const param = Object.assign({}, values)
const param = Object.assign({}, this.model, values)
console.log(param)
this.$emit('ok', param, this.index)
this.close()