From 93770b7ed035b6c758b4d4f8be6e046ea32ce0b4 Mon Sep 17 00:00:00 2001 From: wxg0103 <727495428@qq.com> Date: Thu, 13 Nov 2025 15:13:19 +0800 Subject: [PATCH] feat: add comments to clarify token usage and top questions data structure --- ui/src/views/application-overview/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/src/views/application-overview/index.vue b/ui/src/views/application-overview/index.vue index 5d4409fdc..837c5f65e 100644 --- a/ui/src/views/application-overview/index.vue +++ b/ui/src/views/application-overview/index.vue @@ -362,11 +362,13 @@ function getAppStatistics() { loadSharedApi({type: 'application', systemType: apiType.value}) .getTokenUsage(id, daterange.value, statisticsLoading) .then((res: any) => { + // [{'token_usage': 200, 'username': '张三'}, ...] tokenUsage.value = res.data }) loadSharedApi({type: 'application', systemType: apiType.value}) .topQuestions(id, daterange.value, statisticsLoading) .then((res: any) => { + // [{'chat_record_count': 200, 'username': '张三'}, ...] topQuestions.value = res.data }) }