From 0082fa417fb2af9add3406bf05ab3e3e45890c34 Mon Sep 17 00:00:00 2001
From: rain <1679827795@qq.com>
Date: Thu, 12 Jun 2025 14:30:02 +0800
Subject: [PATCH] Merge branch 'master' of http://139.196.74.78:10010/r/drone/drone-web-manage
---
src/views/wel/components/backlog.vue | 25 ++++++++++++++++++++-----
1 files changed, 20 insertions(+), 5 deletions(-)
diff --git a/src/views/wel/components/backlog.vue b/src/views/wel/components/backlog.vue
index 069b2a9..926994b 100644
--- a/src/views/wel/components/backlog.vue
+++ b/src/views/wel/components/backlog.vue
@@ -13,7 +13,8 @@
>
<div>
{{ item.name }}
- <div class="dots">{{ item.number >= 100 ? '99+' : item.number }}</div>
+ <div class="dots" :class="item.number >= 100 ? 'dots1':''">{{ item.number >= 100 ? '99+' : item.number }}</div>
+ <!-- <div class="dots">99+</div> -->
</div>
</div>
</div>
@@ -277,8 +278,21 @@
width: 17px;
height: 17px;
border-radius: 50%;
- background: #366fff;
+ background: #366fff;
color: #fff;
+ font-size: 9px;
+ position: absolute;
+ top: -10px;
+ right: -13px;
+ padding: 1px;
+ line-height: 17px;
+ }
+ .dots1 {
+ width: 17px;
+ height: 17px;
+ border-radius: 50%;
+ background: none !important;
+ color: #366fff !important;
font-size: 9px;
position: absolute;
top: -10px;
@@ -313,9 +327,10 @@
margin-left: 3px;
width: 1.6rem;
height: 1.6rem;
- background-position: center;
- background-repeat: no-repeat;
- background-size: contain;
+ img{
+ width: 100%;
+ height: 100%;
+ }
}
.content-wrapper {
--
Gitblit v1.9.3