该颜色问题

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
+1 -1
View File
@@ -787,7 +787,7 @@ const getTagColor = (status) => {
}; };
const formatTagColor = (index) => { const formatTagColor = (index) => {
const colors = ['#f94438', '#ffb93f', '#4ecdc4', '#92d758', '#FF9800']; const colors = ['#f94438', '#ffb93f', '#4ecdc4', '#92d758'];
return colors[index % colors.length]; return colors[index % colors.length];
}; };
// 获取状态文本 // 获取状态文本
+1 -1
View File
@@ -330,7 +330,7 @@ const groupedMeetings = computed(() => {
}); });
}); });
const formatTagColor = (index) => { const formatTagColor = (index) => {
const colors = ["#f94438", "#ffb93f", "#4ecdc4", "#92d758", "#FF9800"]; const colors = ['#f94438', '#ffb93f', '#4ecdc4', '#92d758'];
return colors[index % colors.length]; return colors[index % colors.length];
}; };
// 页面显示时获取会议列表数据 // 页面显示时获取会议列表数据