邀请发送 (菜单暂隐藏, 待确认参数见 发送邀请-待确认参数.md): - 后端: BizInvite / BizInviteRecipient + Controller/Service/Mapper/XML - 邮件: InviteMailSender (spring-boot-starter-mail SMTP) + application*.yml 邮件配置 - 上传进度: UploadProgressRegistry + UploadProgressController - 前端: InviteList / InviteNew / InviteDetail / InviteView + api/business/invite.js - 原型: proto/html/components/invite-detail / new-invitation / send-invitation 登录/账号: - 首次设密: /getInfo 返回 isPasswordEmpty, SysProfileController 密码为空时跳过旧密码校验, ForcePasswordDialog 强制弹窗 - 姓名单一可信源 resolveDisplayName: doctor→biz_expert.name, sponsor/executor→biz_person.name, 其余回退 nick_name - OA compliance 门禁改为按手机号查 ecology 视图 (不再限定 manager/leader) 其它: - OSS zip 在线查看 (列清单+取单文件, 公开只读) + SecurityConfig permitAll - doctor 项目详情 ProjectDetail.vue - 数据库/测试/设计文档 (md) 入库
257 lines
7.9 KiB
HTML
257 lines
7.9 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>合规人员工作台 - 项目管理系统</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
body {
|
|
font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
|
|
color: #333;
|
|
background: #fff;
|
|
display: flex;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* ============= 侧边栏 ============= */
|
|
.sidebar {
|
|
width: 220px;
|
|
background: #001529;
|
|
color: #fff;
|
|
flex-shrink: 0;
|
|
height: 100vh;
|
|
position: sticky;
|
|
top: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-shadow: 2px 0 8px rgba(0,0,0,0.08);
|
|
}
|
|
|
|
.sidebar-logo {
|
|
height: 60px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 0 20px;
|
|
border-bottom: 1px solid rgba(255,255,255,0.06);
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.sidebar-logo-icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
background: linear-gradient(135deg, #1890ff, #096dd9);
|
|
border-radius: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.sidebar-menu {
|
|
list-style: none;
|
|
padding: 12px 0;
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.sidebar-menu li a {
|
|
display: block;
|
|
margin: 2px 12px;
|
|
padding: 11px 20px;
|
|
border-radius: 6px;
|
|
color: rgba(255,255,255,0.7);
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
position: relative;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.sidebar-menu li a:hover {
|
|
color: #fff;
|
|
background: rgba(255,255,255,0.06);
|
|
}
|
|
|
|
.sidebar-menu li a.active {
|
|
color: #fff;
|
|
background: linear-gradient(90deg, #1890ff, #096dd9);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.sidebar-menu li a.active::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: -12px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 3px;
|
|
height: 18px;
|
|
background: #fff;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
/* ============= 主区 ============= */
|
|
.main-area {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 0;
|
|
}
|
|
|
|
.topbar {
|
|
height: 60px;
|
|
padding: 0 24px;
|
|
background: #fff;
|
|
border-bottom: 1px solid #e8e8e8;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 16px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.topbar-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.user-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 4px 12px 4px 4px;
|
|
border-radius: 20px;
|
|
text-decoration: none;
|
|
color: #1a1a1a;
|
|
}
|
|
|
|
.user-info:hover {
|
|
background: #f5f5f5;
|
|
}
|
|
|
|
.avatar {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, #1890ff, #722ed1);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #fff;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.divider-v {
|
|
width: 1px;
|
|
height: 20px;
|
|
background: #e8e8e8;
|
|
}
|
|
|
|
.account-link {
|
|
color: #1890ff;
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.account-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* ============= 内容区(内嵌) ============= */
|
|
.content {
|
|
flex: 1;
|
|
background: #fafafa;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.content-frame {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
flex: 1;
|
|
background: #fafafa;
|
|
display: block;
|
|
}
|
|
|
|
/* ============= 响应式 ============= */
|
|
@media (max-width: 768px) {
|
|
body { flex-direction: column; }
|
|
.sidebar { width: 100%; height: auto; position: relative; }
|
|
.sidebar-logo { display: none; }
|
|
.sidebar-menu { display: flex; overflow-x: auto; padding: 8px; }
|
|
.sidebar-menu li a { white-space: nowrap; }
|
|
.content { padding: 0; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- 侧边栏 -->
|
|
<aside class="sidebar">
|
|
<div class="sidebar-logo">
|
|
<div class="sidebar-logo-icon">P</div>
|
|
<span>项目管理系统</span>
|
|
</div>
|
|
<ul class="sidebar-menu">
|
|
<li><a href="#" data-page="components/workbench.html" class="menu-link active">工作台</a></li>
|
|
<li><a href="#" data-page="components/project-plan.html" class="menu-link">项目策划方案管理</a></li>
|
|
<li><a href="#" data-page="components/project-manage.html" class="menu-link">项目管理</a></li>
|
|
<li><a href="#" data-page="components/meeting-manage.html" class="menu-link">会议管理</a></li>
|
|
<li><a href="#" data-page="components/expert-review.html" class="menu-link">专家审核</a></li>
|
|
<li><a href="#" data-page="components/executor-units.html" class="menu-link">执行单位管理</a></li>
|
|
<li><a href="#" data-page="components/support-unit-manage.html" class="menu-link">支持单位管理</a></li>
|
|
<li><a href="#" data-page="components/support-intent.html" class="menu-link">支持意向</a></li>
|
|
<li><a href="#" data-page="components/execution-intent.html" class="menu-link">执行意向</a></li>
|
|
<li><a href="#" data-page="components/send-invitation.html" class="menu-link">发送邀请</a></li>
|
|
<li><a href="#" data-page="components/account-manage.html" class="menu-link">账号管理</a></li>
|
|
</ul>
|
|
</aside>
|
|
|
|
<!-- 主区域 -->
|
|
<div class="main-area">
|
|
|
|
<!-- Navbar -->
|
|
<header class="topbar">
|
|
<div class="topbar-right">
|
|
<a class="user-info" id="userMenu">
|
|
<div class="avatar">张</div>
|
|
<span class="user-name">张三</span>
|
|
</a>
|
|
<div class="divider-v"></div>
|
|
<a href="账号信息.html" class="account-link">账号信息</a>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- 内容区(内嵌) -->
|
|
<main class="content">
|
|
<iframe id="contentFrame" name="contentFrame" class="content-frame" src="components/workbench.html"></iframe>
|
|
</main>
|
|
</div>
|
|
|
|
<script>
|
|
document.getElementById('userMenu').addEventListener('click', function(e) {
|
|
if (confirm('是否退出登录?')) {
|
|
window.location.href = '登录.html';
|
|
}
|
|
});
|
|
|
|
// 菜单切换 iframe 内容
|
|
document.querySelectorAll('.menu-link').forEach(link => {
|
|
link.addEventListener('click', function(e) {
|
|
e.preventDefault();
|
|
document.querySelectorAll('.menu-link').forEach(l => l.classList.remove('active'));
|
|
this.classList.add('active');
|
|
document.getElementById('contentFrame').src = this.dataset.page;
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |