fix: 修复实体列表流量速率显示为横杠的问题

This commit is contained in:
chenjinsong
2023-09-28 10:01:13 +08:00
parent 60bbb8b165
commit ccd2b3d08b

View File

@@ -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 }
})
})
},