fix: KPI指标表格头提示信息

This commit is contained in:
TsMask
2025-01-16 20:56:09 +08:00
parent fa44f6abe0
commit 7091f1ffa6

View File

@@ -1106,6 +1106,39 @@ onBeforeUnmount(() => {
</a-tooltip> </a-tooltip>
</span> </span>
</template> </template>
<template v-if="column.key === 'avg'">
<span>
{{ t('views.perfManage.kpiOverView.avgValue') }}
<a-tooltip placement="bottom">
<template #title>
<span>Average value over the time range</span>
</template>
<InfoCircleOutlined />
</a-tooltip>
</span>
</template>
<template v-if="column.key === 'max'">
<span>
{{ t('views.perfManage.kpiOverView.maxValue') }}
<a-tooltip placement="bottom">
<template #title>
<span>Maximum value in time range</span>
</template>
<InfoCircleOutlined />
</a-tooltip>
</span>
</template>
<template v-if="column.key === 'min'">
<span>
{{ t('views.perfManage.kpiOverView.minValue') }}
<a-tooltip placement="bottom">
<template #title>
<span>Minimum value in the time range</span>
</template>
<InfoCircleOutlined />
</a-tooltip>
</span>
</template>
</template> </template>
</a-table> </a-table>
</div> </div>