fix: 修改编辑功能错误的问题

This commit is contained in:
zhangyu
2021-07-21 14:58:16 +08:00
parent c5cdc498d0
commit 6e89e1a2b9

View File

@@ -123,7 +123,7 @@ export default {
edit (u) {
get(`${this.url}/${u.id}`).then(response => {
if (response.code === 200) {
this.object = response.user
this.object = response.data
this.rightBox.show = true
}
})