PMCORE-3311:Tooltip empty PendignTask
This commit is contained in:
@@ -1,13 +1,21 @@
|
|||||||
<template>
|
<template>
|
||||||
<div v-if="data.length" class="task-cell">
|
<div v-if="data.length" class="task-cell">
|
||||||
<div v-for="(item, index) in data" class="d-flex mb-3">
|
<div
|
||||||
|
v-for="(item, index) in data"
|
||||||
|
v-bind:key = index
|
||||||
|
class="d-flex mb-3">
|
||||||
<div
|
<div
|
||||||
v-bind:style="{ color: activeColor(item.CODE_COLOR) }"
|
v-bind:style="{ color: activeColor(item.CODE_COLOR) }"
|
||||||
:id="statusId + index"
|
:id="statusId + index"
|
||||||
>
|
>
|
||||||
<i class="fas fa-square"></i>
|
<i class="fas fa-square"></i>
|
||||||
</div>
|
</div>
|
||||||
<b-popover :target="statusId + index" triggers="hover" placement="top">
|
<b-popover
|
||||||
|
v-if="item.DELAYED_TITLE && item.DELAYED_MSG"
|
||||||
|
:target="statusId + index"
|
||||||
|
triggers="hover"
|
||||||
|
placement="top"
|
||||||
|
>
|
||||||
<b> {{ item.DELAYED_TITLE }} </b> {{ item.DELAYED_MSG }}
|
<b> {{ item.DELAYED_TITLE }} </b> {{ item.DELAYED_MSG }}
|
||||||
</b-popover>
|
</b-popover>
|
||||||
<div class="col ellipsis" v-b-popover.hover.top="item.TITLE">
|
<div class="col ellipsis" v-b-popover.hover.top="item.TITLE">
|
||||||
|
|||||||
Reference in New Issue
Block a user