Compare commits

..

8 Commits

Author SHA1 Message Date
chenjinsong
2c70330695 fix: 修复双向链路配置下,链路下钻后id不对的问题 2024-06-18 18:15:23 +08:00
陈劲松
04baa432e2 Merge branch 'cherry-pick-d82e69b8' into 'dev-24.04-alydemo'
CN-1669 fix: 去除链路界面多余的npm接口请求。

See merge request cyber-narrator/cn-ui!80
2024-06-18 06:28:58 +00:00
刘洪洪
068230b159 CN-1669 fix: 去除链路界面多余的npm接口请求。
(cherry picked from commit d82e69b8f4)
2024-06-18 06:28:52 +00:00
陈劲松
04032496ad Merge branch 'cherry-pick-77886f54' into 'dev-24.04-alydemo'
CN-1669 fix: 1、修复超时登录url编码异常导致的界面报错问题;2、去除链路界面多余的npm接口请求。

See merge request cyber-narrator/cn-ui!78
2024-06-18 02:42:09 +00:00
刘洪洪
d3f2d58e1a CN-1669 fix: 1、修复超时登录url编码异常导致的界面报错问题;2、去除链路界面多余的npm接口请求。
(cherry picked from commit 77886f54c2)
2024-06-18 02:42:02 +00:00
chenjinsong
1a8f983585 fix: 修复链路下钻后第一个图漏加filter条件的问题 2024-06-17 16:32:51 +08:00
chenjinsong
ee393e331f fix: 修复链路第二个block悬浮框主题色错误问题 2024-06-16 17:03:06 +08:00
chenjinsong
1d2a2279c6 fix: 实体总量用假数据显示 2024-06-16 15:56:24 +08:00

View File

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