someone-oa/mobile/about.html
2025-12-11 15:21:16 +08:00

211 lines
5.9 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>关于系统 - OA系统</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background: #f5f5f5;
max-width: 414px;
margin: 0 auto;
min-height: 100vh;
padding-bottom: 60px;
}
.header {
background: #1890ff;
color: white;
padding: 12px 16px;
display: flex;
align-items: center;
justify-content: space-between;
position: sticky;
top: 0;
z-index: 100;
}
.header-left {
display: flex;
align-items: center;
gap: 12px;
}
.back-btn {
background: none;
border: none;
color: white;
font-size: 18px;
cursor: pointer;
}
.header-title {
font-size: 18px;
font-weight: bold;
}
.content {
padding: 16px;
background: #ffffff;
min-height: calc(100vh - 44px - 60px);
}
.logo-section {
text-align: center;
padding: 40px 0;
}
.logo-icon {
width: 100px;
height: 100px;
background: #1890ff;
border-radius: 20px;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 50px;
color: white;
}
.app-name {
font-size: 24px;
font-weight: bold;
color: #333;
margin-bottom: 8px;
}
.app-version {
font-size: 14px;
color: #999;
}
.info-section {
margin-top: 32px;
}
.info-item {
padding: 16px 0;
border-bottom: 1px solid #f0f0f0;
}
.info-item:last-child {
border-bottom: none;
}
.info-label {
font-size: 14px;
color: #999;
margin-bottom: 8px;
}
.info-value {
font-size: 15px;
color: #333;
line-height: 1.6;
}
.copyright {
text-align: center;
padding: 32px 0;
color: #999;
font-size: 12px;
line-height: 1.6;
}
.bottom-nav {
position: fixed;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
max-width: 414px;
background: white;
border-top: 1px solid #e5e5e5;
display: flex;
padding: 8px 0;
z-index: 100;
}
.nav-item {
flex: 1;
text-align: center;
padding: 8px;
color: #666;
font-size: 12px;
text-decoration: none;
}
.nav-item.active {
color: #1890ff;
}
.nav-icon {
font-size: 20px;
margin-bottom: 4px;
}
</style>
</head>
<body>
<div class="header">
<div class="header-left">
<button class="back-btn" onclick="history.back()"></button>
<div class="header-title">关于系统</div>
</div>
</div>
<div class="content">
<div class="logo-section">
<div class="logo-icon">OA</div>
<div class="app-name">OA系统</div>
<div class="app-version">版本 1.0.0</div>
</div>
<div class="info-section">
<div class="info-item">
<div class="info-label">系统简介</div>
<div class="info-value">
OA系统是一款企业办公管理平台提供项目立项、过程管理、财务管理、报表统计等功能支持PC端和移动端方便企业高效管理项目全生命周期。
</div>
</div>
<div class="info-item">
<div class="info-label">主要功能</div>
<div class="info-value">
• 商机(立项)管理<br>
• 项目过程管理<br>
• 财务管理<br>
• 报表管理<br>
• 系统设置
</div>
</div>
<div class="info-item">
<div class="info-label">技术支持</div>
<div class="info-value">
如有问题,请联系系统管理员或技术支持团队。
</div>
</div>
<div class="info-item">
<div class="info-label">更新日期</div>
<div class="info-value">2025-01-15</div>
</div>
</div>
<div class="copyright">
© 2025 OA系统<br>
版权所有
</div>
</div>
<div class="bottom-nav">
<a href="todo.html" class="nav-item">
<div class="nav-icon">📋</div>
<div>待办</div>
</a>
<a href="message.html" class="nav-item">
<div class="nav-icon">🔔</div>
<div>消息</div>
</a>
<a href="project.html" class="nav-item">
<div class="nav-icon">📁</div>
<div>项目</div>
</a>
<a href="output.html" class="nav-item">
<div class="nav-icon">📝</div>
<div>成果</div>
</a>
<a href="profile.html" class="nav-item">
<div class="nav-icon">👤</div>
<div>我的</div>
</a>
</div>
</body>
</html>