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.5.0.js"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Microsoft YaHei', Arial, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.admin-container {
display: flex;
min-height: 100vh;
}
.sidebar {
width: 250px;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.sidebar-header {
padding: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-align: center;
}
.sidebar-header h2 {
font-size: 18px;
margin-bottom: 5px;
}
.sidebar-header p {
font-size: 12px;
opacity: 0.8;
}
.nav-menu {
list-style: none;
padding: 20px 0;
}
.nav-item {
margin: 5px 15px;
border-radius: 8px;
overflow: hidden;
transition: all 0.3s ease;
}
.nav-item:hover {
background: rgba(102, 126, 234, 0.1);
}
.nav-item.active {
background: rgba(102, 126, 234, 0.2);
}
.nav-link {
display: flex;
align-items: center;
padding: 12px 15px;
color: #333;
text-decoration: none;
transition: all 0.3s ease;
}
.nav-icon {
width: 20px;
height: 20px;
margin-right: 10px;
fill: currentColor;
}
.main-content {
flex: 1;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
}
.header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 15px 30px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
}
.page-title {
font-size: 24px;
color: #333;
font-weight: 600;
}
.user-info {
display: flex;
align-items: center;
gap: 15px;
}
.avatar {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
}
.content-area {
padding: 30px;
min-height: calc(100vh - 80px);
}
.page {
display: none;
}
.page.active {
display: block;
}
.card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 12px;
padding: 25px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
transition: all 0.3s ease;
}
.card:hover {
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 30px;
}
.stat-card {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 25px;
border-radius: 12px;
text-align: center;
transition: all 0.3s ease;
}
.stat-card:hover {
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}
.stat-number {
font-size: 36px;
font-weight: bold;
margin-bottom: 10px;
}
.stat-label {
font-size: 14px;
opacity: 0.9;
}
.form-group {
margin-bottom: 20px;
}
.form-label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: #333;
}
.form-input {
width: 100%;
padding: 12px 15px;
border: 2px solid #e1e5e9;
border-radius: 8px;
font-size: 14px;
transition: all 0.3s ease;
}
.form-input:focus {
outline: none;
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.form-select {
width: 100%;
padding: 12px 15px;
border: 2px solid #e1e5e9;
border-radius: 8px;
font-size: 14px;
background: white;
cursor: pointer;
}
.btn {
padding: 12px 24px;
border: none;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
text-align: center;
}
.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.3);
}
.btn-success {
background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
color: white;
}
.btn-danger {
background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
color: white;
}
.btn-warning {
background: linear-gradient(135deg, #fe.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0