vue3实现pc端员工绩效管理系统ui原型图代码
代码语言:html
所属分类:布局界面
代码描述:vue3实现pc端员工绩效管理系统ui原型图代码
代码标签: vue pc端 员工 绩效 管理 系统 ui 原型图 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>绩效管理系统</title>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/vue.global.prod.3.5.17.js"></script>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/echarts.5.4.2.js"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f5f7fa;
color: #333;
}
.container {
display: flex;
height: 100vh;
}
.sidebar {
width: 260px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 20px 0;
box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}
.logo {
text-align: center;
padding: 20px;
font-size: 24px;
font-weight: bold;
border-bottom: 1px solid rgba(255,255,255,0.1);
margin-bottom: 20px;
}
.nav-item {
padding: 15px 25px;
cursor: pointer;
transition: all 0.3s;
border-left: 4px solid transparent;
display: flex;
align-items: center;
gap: 12px;
}
.nav-item:hover, .nav-item.active {
background: rgba(255,255,255,0.1);
border-left-color: #fff;
}
.nav-item svg {
width: 20px;
height: 20px;
}
.main-content {
flex: 1;
padding: 30px;
overflow-y: auto;
}
.header {
background: white;
padding: 20px 30px;
border-radius: 12px;
box-shadow: 0 2px 20px rgba(0,0,0,0.08);
margin-bottom: 30px;
display: flex;
justify-content: space-between;
align-items: center;
}
.page-title {
font-size: 28px;
font-weight: 600;
color: #2d3748;
}
.user-info {
display: flex;
align-items: center;
gap: 15px;
}
.user-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
}
.content-area {
background: white;
border-radius: 12px;
padding: 30px;
box-shadow: 0 2px 20px rgba(0,0,0,0.08);
min-height: 600px;
}
.btn {
padding: 12px 24px;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: all 0.3s;
display: inline-flex;
align-items: center;
gap: 8px;
}
.btn-primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.btn-secondary {
background: #e2e8f0;
color: #4a5568;
}
.btn-danger {
background: #e53e3e;
color: white;
}
.table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
.table th, .table td {
padding: 15px;
text-align: left;
border-bottom: 1px solid #e2e8f0;
}
.table th {
background: #f7fafc;
font-weight: 600;
color: #2d3748;
}
.table tr:hover {
background: #f7fafc;
}
.form-group {
margin-bottom: 20px;
}
.form-label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: #2d3748;
}
.form-control {
width: 100%;
padding: 12px 16px;
border: 1px solid #e2e8f0;
border-radius: 8px;
font-size: 14px;
transition: border-color 0.3s;
}
.form-control:focus {
outline: none;
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
}
.modal-content {
background: white;
padding: 30px;
border-radius: 12px;
width: 90%;
max-width: 500px;
max-height: 80vh;
overflow-y: auto;
}
.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.modal-title {
font-size: 20px;
font-weight: 600;
}
.close {
background: none;
border: none;
font-size: 24px;
cursor: pointer;
color: #a0aec0;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 30px;
}
.stat-card {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 2px 20px rgba(0,0,0,0.08);
border-left: 4px solid;
}
.stat-card.primary { border-left-color: #667eea; }
.stat-card.success { border-left-color: #48bb78; }
.stat-card.warning { border-left-color: #ed8936; }
.stat-card.danger { border-left-color: #e53e3e; }
.stat-number {
font-size: 32px;
font-weight: bold;
margin-bottom: 8px;
}
.stat-label {
color: #718096;
font-size: 14px;
}
.chart-container {
height: 400px;
margin: 20px 0;
}
.search-bar {
display: flex;
gap: 15px;
margin-bottom: 20px;
align-items: center;
}
.search-input {
flex: 1;
max-width: 300px;
}
.actions {
display: flex;
gap: 10px;
}
.badge {
padding: 4px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 500;
}
.badge.success { background: #c6f6d5; color: #22543d; }
.badge.warning { background: #fed7aa; color: #9c4221; }
.badge.danger { background: #fed7d7; color: #742a2a; }
.hidden { display: none !important; }
.progress-bar {
width: 100%;
height: 8px;
background: #e2e8f0;
border-radius: 4px;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #667eea, #764ba2);
border-radius: 4px;
transition: width 0.3s;
}
</style>
</head>
<body>
<div id="app">
<div class="container">
<!-- 侧边栏 -->
<div class="sidebar">
<div class="logo">绩效管理系统</div>
<div class="nav-item" :class="{active: currentPage === 'dashboard'}" @click="currentPage = 'dashboard'">
<svg fill="currentColor" viewBox="0 0 20 20">
<path d="M3 4a1 1 0 011-1h12a1 1 0 011 1v2a1 1 0 01-1 1H4a1 1 0 01-1-1V4zM3 10a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H4a1 1 0 01-1-1v-6zM14 9a1 1 0 00-1 1v6a1 1 0 001 1h2a1 1 0 001-1v-6a1 1 0 00-1-1h-2z"></path>
</svg>
仪表盘
</div>
<div class="nav-item" :class="{active: currentPage === 'employees'}" @click="currentPage = 'employees'">
<svg fill="currentColor" viewBox="0 0 20 20">
<path d="M9 6a3 3 0 11-6 0 3 3 0 016 0zM17 6a3 3 0 11-6 0 3 3 0 016 0zM12.93 17c.046-.327.07-.66.07-1a6.97 6.97 0 00-1.5-4.33A5 5 0 0119 16v1h-6.07zM6 11a5 5 0 015 5v1H1v-1a5 5 0 015-5z"></path>
</svg>
员工管理
</div>
<div class="nav-item" :class="{active.........完整代码请登录后点击上方下载按钮下载查看
网友评论0