diff --git a/src/views/nav1/Table.vue b/src/views/nav1/Table.vue index d175d0fd..6beed028 100644 --- a/src/views/nav1/Table.vue +++ b/src/views/nav1/Table.vue @@ -204,7 +204,7 @@ //显示编辑界面 handleEdit: function (index, row) { this.editFormVisible = true; - this.editForm = Object.assign({}, row); + this.editForm = JSON.parse(JSON.stringify(row)); }, //显示新增界面 handleAdd: function () { @@ -300,4 +300,4 @@ \ No newline at end of file +