---黄金指标初版

This commit is contained in:
lai
2023-12-06 18:13:21 +08:00
parent be6e91390e
commit 36ac9d0a5f
6 changed files with 257 additions and 125 deletions

View File

@@ -352,14 +352,6 @@ onMounted(() => {
@change="fnTableChange"
:scroll="{ x: true }"
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'alarmTitle'">
<a-tooltip>
<template #title>{{ record.operResult }}</template>
<div class="alarmTitleText">{{ record.alarmTitle }}</div>
</a-tooltip>
</template>
</template>
</a-table>
</a-card>
</PageContainer>
@@ -369,8 +361,4 @@ onMounted(() => {
.table :deep(.ant-pagination) {
padding: 0 24px;
}
.alarmTitleText {
max-width: 300px;
cursor: pointer;
}
</style>