From 9cb51632121749559fdc9ac2bab249813cdc2d33 Mon Sep 17 00:00:00 2001 From: song-cc-rock Date: Thu, 3 Aug 2023 11:30:06 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=8E=A5=E5=8F=A3=E6=B5=8B=E8=AF=95):=20?= =?UTF-8?q?=E9=A6=96=E9=A1=B5=E6=8E=A5=E5=8F=A3=E6=95=B0=E9=87=8F=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1Label=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1028231 --user=宋昌昌 [接口测试] github#25408接口测试首页统计,rpc协议和列表显示的下拉不一致, https://www.tapd.cn/55049933/s/1400524 --- .../src/business/home/components/chart/CountChart.vue | 4 ++-- .../src/business/home/components/dashboard/ApiDashboard.vue | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/api-test/frontend/src/business/home/components/chart/CountChart.vue b/api-test/frontend/src/business/home/components/chart/CountChart.vue index fe1db1ef60..c4ad50d3dc 100644 --- a/api-test/frontend/src/business/home/components/chart/CountChart.vue +++ b/api-test/frontend/src/business/home/components/chart/CountChart.vue @@ -84,7 +84,7 @@ export default { let dataIsNotEmpty = false; let protocolData = [ { value: 0, name: 'HTTP' }, - { value: 0, name: 'RPC' }, + { value: 0, name: 'DUBBO' }, { value: 0, name: 'TCP' }, { value: 0, name: 'SQL' }, ]; @@ -96,7 +96,7 @@ export default { dataIsNotEmpty = true; protocolData = [ { value: this.apiData.httpCount > 0 ? this.apiData.httpCount : '-', name: 'HTTP' }, - { value: this.apiData.rpcCount > 0 ? this.apiData.rpcCount : '-', name: 'RPC' }, + { value: this.apiData.rpcCount > 0 ? this.apiData.rpcCount : '-', name: 'DUBBO' }, { value: this.apiData.tcpCount > 0 ? this.apiData.tcpCount : '-', name: 'TCP' }, { value: this.apiData.sqlCount > 0 ? this.apiData.sqlCount : '-', name: 'SQL' }, ]; diff --git a/api-test/frontend/src/business/home/components/dashboard/ApiDashboard.vue b/api-test/frontend/src/business/home/components/dashboard/ApiDashboard.vue index 904dbfc82e..4982c1c3a3 100644 --- a/api-test/frontend/src/business/home/components/dashboard/ApiDashboard.vue +++ b/api-test/frontend/src/business/home/components/dashboard/ApiDashboard.vue @@ -50,7 +50,7 @@ margin: 7px; float: left; " /> - HTTP: + HTTP :
- RPC : + DUBBO :
- RPC : + DUBBO :