diff --git a/src/views/charts/charts/ChartSingleValue.vue b/src/views/charts/charts/ChartSingleValue.vue index 3006e5da..7e31c6f3 100644 --- a/src/views/charts/charts/ChartSingleValue.vue +++ b/src/views/charts/charts/ChartSingleValue.vue @@ -179,7 +179,7 @@ {{ $_.get(chartData, 'count', '-') }}
- 占比{{ $_.get(chartData, 'percent', '-') }}% + {{$t('protocol.proportion')}}{{ $_.get(chartData, 'percent', '-') }}%
@@ -203,7 +203,7 @@
{{$t('protocol.requestVolume')}}
{{unitConvert($_.get(chartData, 'bytes'), chartInfo.params.unitType).join(' ')}}
-
占比  {{unitConvert($_.get(chartData, 'bytesPercent') * 100, unitTypes.percent).join('')}}
+
{{$t('protocol.proportion')}}  {{unitConvert($_.get(chartData, 'bytesPercent') * 100, unitTypes.percent).join('')}}
@@ -213,7 +213,7 @@
{{$t('protocol.totalFlow')}}
{{unitConvert($_.get(chartData, 'count'), chartInfo.params.unitType).join(' ')}}
-
占比  {{ unitConvert($_.get(chartData, 'countPercent') * 100, unitTypes.percent).join('')}}
+
{{$t('protocol.proportion')}}  {{ unitConvert($_.get(chartData, 'countPercent') * 100, unitTypes.percent).join('')}}