This commit is contained in:
‘937886381’
2025-11-14 17:04:22 +08:00
parent 3d167e8d71
commit dfa4ff3f54
28 changed files with 684 additions and 141 deletions

View File

@@ -22,7 +22,7 @@
<div class="right">
<!-- 完成率颜色动态绑定 -->
<div class="number" :style="{ 'color': item.completed === 0 ? '#FF8400' : 'rgba(54, 181, 138, .7)' }">
{{ item.proportion !== null && item.proportion !== undefined ? (item.proportion * 100) + '%' : '0%' }}
{{ item.proportion !== null && item.proportion !== undefined ? (item.proportion) + '%' : '0%' }}
</div>
<div class="title">完成率</div>
</div>
@@ -133,7 +133,7 @@ export default {
height: 46px;
background: linear-gradient(to bottom,
rgba(255, 0, 0, 0),
rgba(40, 203, 151, 1));
#cbcbcb);
}
.left,