no message

This commit is contained in:
kuaifan 2025-03-11 16:24:31 +08:00
parent 5be209ab59
commit 3c49e96e02
2 changed files with 11 additions and 5 deletions

View File

@ -340,7 +340,7 @@ export default {
if (item.complete_at) {
tags.push({
name: this.$L('已完成'),
style: 'background-color:#ccc',
style: 'background-color:rgba(11,192,55,0.56)',
})
} else if (item.overdue) {
tags.push({
@ -353,6 +353,12 @@ export default {
style: 'background-color:#f80',
})
}
if (item.archived_at) {
tags.push({
name: this.$L('已归档'),
style: 'background-color:#ccc',
})
}
return {
key,
type: 'task',

View File

@ -38,7 +38,7 @@
.chat-record {
visibility: visible;
opacity: 1;
z-index: 9;
z-index: 10;
}
}
}
@ -318,7 +318,7 @@
position: absolute;
top: 50%;
left: 50%;
z-index: 2;
z-index: 20;
transform: translate(-50%, -50%) scale(1);
border-radius: 50%;
background-color: $primary-color;
@ -334,7 +334,7 @@
position: absolute;
top: 50%;
left: 50%;
z-index: 3;
z-index: 30;
transform: translate(-50%, -50%) scale(1);
transition: all 0.3s ease;
color: #ffffff;
@ -344,7 +344,7 @@
position: absolute;
top: 50%;
left: 50%;
z-index: 3;
z-index: 30;
transform: translate(-50%, -50%) scale(1);
display: flex;
align-items: center;