131 lines
4.0 KiB
HTML
131 lines
4.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>页面不存在 - OA系统</title>
|
|
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
|
|
background: #f0f2f5;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
}
|
|
.error-container {
|
|
text-align: center;
|
|
padding: 40px;
|
|
}
|
|
.error-code {
|
|
font-size: 120px;
|
|
font-weight: bold;
|
|
color: #409EFF;
|
|
line-height: 1;
|
|
margin-bottom: 20px;
|
|
}
|
|
.error-title {
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
color: #303133;
|
|
margin-bottom: 12px;
|
|
}
|
|
.error-desc {
|
|
font-size: 14px;
|
|
color: #909399;
|
|
margin-bottom: 32px;
|
|
}
|
|
.error-actions {
|
|
display: flex;
|
|
gap: 12px;
|
|
justify-content: center;
|
|
margin-bottom: 40px;
|
|
}
|
|
.btn {
|
|
padding: 10px 24px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
}
|
|
.btn-primary {
|
|
background: #409EFF;
|
|
color: white;
|
|
}
|
|
.btn-primary:hover {
|
|
background: #66b1ff;
|
|
}
|
|
.btn-default {
|
|
background: white;
|
|
color: #333;
|
|
border: 1px solid #dcdfe6;
|
|
}
|
|
.btn-default:hover {
|
|
border-color: #409EFF;
|
|
color: #409EFF;
|
|
}
|
|
.quick-links {
|
|
background: white;
|
|
border-radius: 8px;
|
|
padding: 24px;
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
|
|
}
|
|
.links-title {
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
color: #303133;
|
|
margin-bottom: 16px;
|
|
}
|
|
.links-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
|
|
gap: 12px;
|
|
}
|
|
.link-item {
|
|
padding: 12px;
|
|
background: #f5f7fa;
|
|
border-radius: 4px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
text-decoration: none;
|
|
color: #606266;
|
|
}
|
|
.link-item:hover {
|
|
background: #ecf5ff;
|
|
color: #409EFF;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="error-container">
|
|
<div class="error-code">404</div>
|
|
<div class="error-title">页面不存在</div>
|
|
<div class="error-desc">抱歉,您访问的页面不存在或已被删除</div>
|
|
|
|
<div class="error-actions">
|
|
<button class="btn btn-primary" onclick="window.location.href='dashboard.html'">返回首页</button>
|
|
<button class="btn btn-default" onclick="history.back()">返回上一页</button>
|
|
</div>
|
|
|
|
<div class="quick-links">
|
|
<div class="links-title">常用页面</div>
|
|
<div class="links-grid">
|
|
<a href="dashboard.html" class="link-item">首页</a>
|
|
<a href="project-list.html" class="link-item">项目查询</a>
|
|
<a href="approval-center.html" class="link-item">审批中心</a>
|
|
<a href="message-center.html" class="link-item">消息中心</a>
|
|
<a href="report-project-detail.html" class="link-item">报表管理</a>
|
|
<a href="help-center.html" class="link-item">帮助中心</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|