init: Todo Monitor 初始提交

This commit is contained in:
2026-08-02 02:47:50 +08:00
commit a3a9972ab7
45 changed files with 7880 additions and 0 deletions
@@ -0,0 +1,46 @@
<script setup lang="ts">
import { computed } from 'vue'
import type { StatusType } from '@/types/card'
const props = defineProps<{ status: StatusType }>()
const statusColor = computed(() => {
const map: Record<StatusType, string> = {
'待办': 'var(--status-todo)',
'进行中': 'var(--status-progress)',
'已完成': 'var(--status-done)',
'阻塞': 'var(--status-blocked)',
'延期': 'var(--status-overdue)',
}
return map[props.status] || 'var(--status-todo)'
})
</script>
<template>
<span class="status-badge" :style="{ '--status-color': statusColor }">
<span class="status-dot" />
{{ status }}
</span>
</template>
<style scoped>
.status-badge {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 11px;
font-weight: 600;
padding: 2px 10px;
border-radius: 10px;
background: color-mix(in srgb, var(--status-color) 12%, transparent);
color: var(--status-color);
white-space: nowrap;
}
.status-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--status-color);
}
</style>