From 1d2a2279c6c6ddea81b4789fa1096e69defe7dce Mon Sep 17 00:00:00 2001 From: chenjinsong <523037378@qq.com> Date: Sun, 16 Jun 2024 15:56:24 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AE=9E=E4=BD=93=E6=80=BB=E9=87=8F?= =?UTF-8?q?=E7=94=A8=E5=81=87=E6=95=B0=E6=8D=AE=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/entityExplorer/EntityExplorer.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/entityExplorer/EntityExplorer.vue b/src/views/entityExplorer/EntityExplorer.vue index 42716066..a5c95a44 100644 --- a/src/views/entityExplorer/EntityExplorer.vue +++ b/src/views/entityExplorer/EntityExplorer.vue @@ -728,10 +728,10 @@ export default { axios.get(api.entity.entityList.entityTotal).then(response => { if (response.status === 200) { - this.entityDomainTotal = response.data.data.domainCount - this.entityIpTotal = response.data.data.ipCount - this.entityAppTotal = response.data.data.appCount - this.entitySubscriberTotal = response.data.data.subscriberCount + this.entityDomainTotal = 1032544 // response.data.data.domainCount + this.entityIpTotal = 1900804 // response.data.data.ipCount + this.entityAppTotal = 837 // response.data.data.appCount + this.entitySubscriberTotal = 367 // response.data.data.subscriberCount } }).catch((e) => { this.$message.error(e.response.data.message)