From 6e89e1a2b9f33a4e7dfecb4bfc69768057918c5f Mon Sep 17 00:00:00 2001 From: zhangyu Date: Wed, 21 Jul 2021 14:58:16 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=20=E4=BF=AE=E6=94=B9=E7=BC=96?= =?UTF-8?q?=E8=BE=91=E5=8A=9F=E8=83=BD=E9=94=99=E8=AF=AF=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mixins/dataList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mixins/dataList.js b/src/mixins/dataList.js index 35f9421d..75a75951 100644 --- a/src/mixins/dataList.js +++ b/src/mixins/dataList.js @@ -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 } })