该颜色问题

This commit is contained in:
zoujiandong 2025-11-14 15:14:53 +08:00
parent 7c46a3487a
commit 6b238c2d33
2 changed files with 2 additions and 2 deletions

View File

@ -787,7 +787,7 @@ const getTagColor = (status) => {
};
const formatTagColor = (index) => {
const colors = ['#f94438', '#ffb93f', '#4ecdc4', '#92d758', '#FF9800'];
const colors = ['#f94438', '#ffb93f', '#4ecdc4', '#92d758'];
return colors[index % colors.length];
};
//

View File

@ -330,7 +330,7 @@ const groupedMeetings = computed(() => {
});
});
const formatTagColor = (index) => {
const colors = ["#f94438", "#ffb93f", "#4ecdc4", "#92d758", "#FF9800"];
const colors = ['#f94438', '#ffb93f', '#4ecdc4', '#92d758'];
return colors[index % colors.length];
};
//