From 91e9d2649eb024f0f885bb206aba6a1bb8f5b067 Mon Sep 17 00:00:00 2001 From: gaoyuanwei <2826352639@qq.com> Date: Sun, 19 Jun 2022 18:28:59 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BE=E5=88=86=E6=AF=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front/src/views/capabilityCloud/components/DataResources.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/views/capabilityCloud/components/DataResources.vue b/front/src/views/capabilityCloud/components/DataResources.vue index 95f09171..66e9bf62 100644 --- a/front/src/views/capabilityCloud/components/DataResources.vue +++ b/front/src/views/capabilityCloud/components/DataResources.vue @@ -135,14 +135,14 @@ resourcesLeft.value[1].num = contentData.value.requestCount || '0' // 总满足率 resourcesLeft.value[2].num = - contentData.value.satisfactionRate + '%' || '0' + '%' + contentData.value.satisfactionRate * 100 + '%' || '0' + '%' // 排行 for (let i = 1; i < 6; i++) { // TOP assignRankings.value[i - 1].index = i // assignRankings.value[i - 1].name = - contentData.value.resourceTop5[i - 1].service_name || 'wowoow' + contentData.value.resourceTop5[i - 1].service_name || '' assignRankings.value[i - 1].opacity = contentData.value.resourceTop5[i - 1].count || ' ' }