From 4b897a830b2f4a7b78e222268cd7fa52f2ec4388 Mon Sep 17 00:00:00 2001 From: Admin <978517621@qq.com> Date: 星期二, 23 八月 2022 15:56:06 +0800 Subject: [PATCH] Default Changelist --- src/views/intellectInspect/inspectIndex/index.vue | 21 +++++++++++++++++---- 1 files changed, 17 insertions(+), 4 deletions(-) diff --git a/src/views/intellectInspect/inspectIndex/index.vue b/src/views/intellectInspect/inspectIndex/index.vue index 914e5ab..a216394 100644 --- a/src/views/intellectInspect/inspectIndex/index.vue +++ b/src/views/intellectInspect/inspectIndex/index.vue @@ -7,13 +7,22 @@ <el-icon :size="18" color="#F3001E" style="margin-right: 4px"><BellFilled /></el-icon> 预警消息: <div v-if="unchecked != 0"> - 当日超期未巡检任务<span @click="toOverTime(4)">{{ unchecked }}</span - >个 + 当日超期未巡检任务<el-tooltip + class="box-item" + effect="light" + content="查看相关记录" + placement="bottom-start" + ><span @click="toOverTime(4)">{{ unchecked }}</span></el-tooltip>个 </div> <span v-if="unchecked != 0 && unusual != 0">,</span> <div v-if="unusual != 0"> - 存在异常任务<span @click="toOverTime(5)">{{ unusual }}</span - >个 + 存在异常任务<el-tooltip + class="box-item" + effect="light" + content="查看相关记录" + placement="bottom-start" + ><span @click="toOverTime(5)">{{ unusual }}</span + ></el-tooltip>个 </div> 。 </div> @@ -251,6 +260,10 @@ color: #f3001e; margin: 0 4px; cursor: pointer; + + &:hover{ + text-decoration: underline; + } } } } -- Gitblit v1.9.2