fix: npm-events添加鼠标移动小手

This commit is contained in:
刘洪洪
2023-01-09 14:42:51 +08:00
parent 8c8e3b6af9
commit d02a95290b
2 changed files with 4 additions and 1 deletions

View File

@@ -86,6 +86,9 @@
color: #046ECA;
font-weight: 400
}
.click-active {
cursor: pointer;
}
.data-recent-table-eventType {
font-size: 12px;
color: #046ECA;

View File

@@ -24,7 +24,7 @@
<span class="data-recent-table-severity" :class="scope.row[item.prop]">{{scope.row[item.prop]}}</span>
</template>
<template v-else-if="item.prop === 'eventKey'">
<span class="data-recent-table-entity" @click="jumpPage(scope.row)">{{splitEventKey(scope.row[item.prop])}}</span>
<span class="data-recent-table-entity click-active" @click="jumpPage(scope.row)">{{splitEventKey(scope.row[item.prop])}}</span>
</template>
<template v-else-if="item.prop === 'eventType'">
<span class="data-recent-table-eventType">{{scope.row[item.prop]}}</span>