Skip to content

Commit

Permalink
perf: 仪表盘鼠标滑过时间显示完整时间
Browse files Browse the repository at this point in the history
  • Loading branch information
kuaifan committed Jan 26, 2022
1 parent 8ff94bc commit 886baa4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions resources/assets/js/pages/manage/dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,12 @@
<i class="taskfont">&#xe71f;</i>
<em>{{item.sub_complete}}/{{item.sub_num}}</em>
</div>
<div :class="['item-icon', item.today ? 'today' : '', item.overdue ? 'overdue' : '']">
<i class="taskfont">&#xe71d;</i>
<em>{{expiresFormat(item.end_at)}}</em>
</div>
<ETooltip :content="item.end_at" placement="right">
<div :class="['item-icon', item.today ? 'today' : '', item.overdue ? 'overdue' : '']">
<i class="taskfont">&#xe71d;</i>
<em>{{expiresFormat(item.end_at)}}</em>
</div>
</ETooltip>
</li>
</ul>
</template>
Expand Down

0 comments on commit 886baa4

Please sign in to comment.