From 9ab00df3425ec6d8cf1b720d9c2604d36832ca3c Mon Sep 17 00:00:00 2001 From: chenjinsong <523037378@qq.com> Date: Thu, 28 Sep 2023 10:01:13 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=AE=9E=E4=BD=93?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E6=B5=81=E9=87=8F=E9=80=9F=E7=8E=87=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E4=B8=BA=E6=A8=AA=E6=9D=A0=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit ccd2b3d08b695d8c96bdd4853f625cb77db3a314) --- src/views/entityExplorer/entityList/Row.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/entityExplorer/entityList/Row.vue b/src/views/entityExplorer/entityList/Row.vue index 3a798d68..0e442b67 100644 --- a/src/views/entityExplorer/entityList/Row.vue +++ b/src/views/entityExplorer/entityList/Row.vue @@ -258,7 +258,7 @@ export default { } axios.get(`${url}?resource=${this.entity.entityValue}`).then(response => { this.$nextTick(() => { - this.entityData = { ...response.data.data, ...this.entity } + this.entityData = { ...this.entityData, ...response.data.data, ...this.entity } }) }) },