工作台界面-初版

This commit is contained in:
Cheng Zhou
2025-12-17 22:37:51 +08:00
parent c50ca05099
commit ad4fa6ae7a
13 changed files with 685 additions and 75 deletions
@@ -0,0 +1,84 @@
<template>
<el-card shadow="never" class="section-card">
<div class="section-header">
<span>{{ title }}</span>
<el-button v-if="!loading" type="primary" link @click="$emit('more')">查看更多</el-button>
</div>
<el-skeleton :loading="loading" animated :rows="3">
<template #default>
<div v-if="items && items.length" class="list">
<div v-for="item in items.slice(0, 5)" :key="item.title + item.path" class="row" @click="go(item.path)">
<div class="title">{{ item.title }}</div>
<div class="meta">
<el-tag size="small" :type="item.overdue ? 'danger' : 'info'">{{ item.status || "待处理" }}</el-tag>
<span class="sub">{{ item.subtitle }}</span>
</div>
</div>
</div>
<div v-else class="empty">{{ emptyText }}</div>
</template>
</el-skeleton>
</el-card>
</template>
<script setup lang="ts">
import { useRouter } from "vue-router";
defineProps<{
title: string;
items: any[];
loading?: boolean;
emptyText?: string;
}>();
const emit = defineEmits(["more"]);
const router = useRouter();
const go = (path: string) => {
if (!path) return;
router.push(path);
};
</script>
<style scoped>
.section-card {
min-height: 220px;
}
.section-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
}
.list {
display: flex;
flex-direction: column;
gap: 8px;
}
.row {
padding: 8px;
border: 1px solid #ebeef5;
border-radius: 6px;
cursor: pointer;
}
.row:hover {
background: #f5f7fa;
}
.title {
font-weight: 600;
}
.meta {
margin-top: 4px;
display: flex;
align-items: center;
gap: 8px;
color: #666;
font-size: 12px;
}
.sub {
color: #888;
}
.empty {
color: #888;
}
</style>