主要改动: - SQL: biz_support_unit → biz_org, 加 org_type, 加 business_nature; 删 biz_execution_unit, biz_service_org - SQL: biz_project.support_unit_id/name + service_org_id/name → org_id/name/type - SQL: biz_meeting.support_unit_name → org_name - SQL: biz_person.work_unit → org_id (FK) - 后端: 新 BizOrg entity/mapper/service/controller - 后端: BizProject/BizMeeting 字段重命名 - 后端: 删 12 个 BizSupportUnit/BizExecutionUnit/BizServiceOrg Java 文件 - 后端: BizPersonImportVO.workUnit → orgName (导入时查 biz_org 取 org_id) - 后端: BizAuthController.registerExecutor 完整实现 (原 registerSupplier stub) - 前端: 新 admin/Orgs.vue + manager/Orgs.vue (原 SupportUnits) - 前端: RegisterExecutor.vue (原 RegisterSupplier, 单页 2 步) - 前端: sponsor/executor/manager 多个文件 workUnit → orgId/orgName 重命名 - 前端: 统一 supplier → executor, 业务命名 sponsor(赞助方) / executor(执行方=供应商) - 前端: 全工程 execution → executor (company type / role / person unit_type)
317 lines
13 KiB
HTML
317 lines
13 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: #fafafa;
|
|
min-height: 100vh;
|
|
}
|
|
.content { padding: 24px 32px; }
|
|
|
|
.breadcrumb {
|
|
font-size: 13px;
|
|
color: #8c8c8c;
|
|
margin-bottom: 12px;
|
|
}
|
|
.breadcrumb a { color: #1890ff; text-decoration: none; }
|
|
.breadcrumb a:hover { text-decoration: underline; }
|
|
|
|
.page-title {
|
|
font-size: 22px;
|
|
font-weight: 600;
|
|
color: #1a1a1a;
|
|
margin-bottom: 4px;
|
|
}
|
|
.page-subtitle {
|
|
font-size: 13px;
|
|
color: #8c8c8c;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.card {
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
padding: 20px 24px;
|
|
margin-bottom: 16px;
|
|
border: 1px solid #f0f0f0;
|
|
}
|
|
|
|
.filter-row {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr auto;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
.filter-field {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.filter-label {
|
|
font-size: 14px;
|
|
color: #595959;
|
|
white-space: nowrap;
|
|
}
|
|
.filter-input {
|
|
flex: 1;
|
|
height: 36px;
|
|
padding: 0 12px;
|
|
border: 1px solid #d9d9d9;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
color: #333;
|
|
background: #fff;
|
|
outline: none;
|
|
}
|
|
.filter-input:focus {
|
|
border-color: #1890ff;
|
|
box-shadow: 0 0 0 3px rgba(24,144,255,0.1);
|
|
}
|
|
.filter-btn {
|
|
height: 36px;
|
|
padding: 0 24px;
|
|
background: #1890ff;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
.filter-btn:hover { background: #096dd9; }
|
|
|
|
.data-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 13px;
|
|
}
|
|
.data-table thead th {
|
|
background: #fafafa;
|
|
padding: 12px 16px;
|
|
text-align: left;
|
|
color: #1a1a1a;
|
|
font-weight: 600;
|
|
border-bottom: 1px solid #f0f0f0;
|
|
white-space: nowrap;
|
|
}
|
|
.data-table tbody td {
|
|
padding: 12px 16px;
|
|
border-bottom: 1px solid #f5f5f5;
|
|
color: #595959;
|
|
vertical-align: middle;
|
|
}
|
|
.data-table tbody tr:hover { background: #fafcff; }
|
|
.data-table tbody tr.row-link { cursor: pointer; }
|
|
|
|
.col-code {
|
|
color: #1890ff;
|
|
font-family: ui-monospace, "Courier New", monospace;
|
|
}
|
|
.col-name { color: #1a1a1a; font-weight: 500; }
|
|
|
|
.status-tag {
|
|
display: inline-block;
|
|
padding: 2px 10px;
|
|
border-radius: 10px;
|
|
font-size: 12px;
|
|
background: #e6f7ff;
|
|
color: #1890ff;
|
|
}
|
|
|
|
.op-link {
|
|
color: #1890ff;
|
|
background: none;
|
|
border: none;
|
|
padding: 0;
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
text-decoration: none;
|
|
margin-right: 8px;
|
|
}
|
|
.op-link:last-child { margin-right: 0; }
|
|
.op-link:hover { text-decoration: underline; }
|
|
|
|
.hint-text {
|
|
font-size: 12px;
|
|
color: #ff4d4f;
|
|
margin-top: 12px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.content { padding: 16px; }
|
|
.filter-row { grid-template-columns: 1fr; }
|
|
.card { padding: 16px; }
|
|
.data-table { display: block; overflow-x: auto; white-space: nowrap; font-size: 12px; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!--
|
|
============================================================
|
|
来源: /原型/我报名的项目.html
|
|
/原型/files/我报名的项目/styles.css
|
|
============================================================
|
|
按 top 排序的内容区模块:
|
|
#1 u11799 "首页" (287, 52) → 面包屑根
|
|
#2 u11811/u11813 项目编号 (274,240)/(341,236) → 筛选 label+input
|
|
#3 u11814/u11816 项目名称 (508,240)/(575,236) → 筛选 label+input
|
|
#4 u11830/u11832 会议名称 (751,240)/(818,236) → 筛选 label+input
|
|
#5 u11817 查找 (989, 236) → 按钮
|
|
#6 u11801/u11803/u11826/u11818/u11835 表头 → 5列表头
|
|
(309/473/661/823/930)
|
|
项目编号/项目名称/会议名称/状态/操作
|
|
#7 u11805 水平线 (266, 329) → 表格分隔
|
|
#8 u11807/u11809/u11828/u11820/u11822/u11824 数据 → 表格行
|
|
#9 u11837 红字提示 (1083, 342) → *下载项目公示的红头文件
|
|
============================================================
|
|
框架元素(由父级 doctor.html 渲染,本页面不输出):
|
|
- u11779/u11781/u11783/u11785/u11787/u11789/u11791/u11793/u11795/u11797 侧边栏+顶栏
|
|
============================================================
|
|
新增项(非原型):
|
|
- 5 行样例数据(原型只示意 1 行)
|
|
- 响应式 768px
|
|
============================================================
|
|
-->
|
|
<main class="content">
|
|
|
|
<!-- #1 面包屑(对应 u11799) -->
|
|
<div class="breadcrumb">
|
|
<a href="javascript:void(0)" onclick="goHome()">首页</a> > 我报名的项目
|
|
</div>
|
|
|
|
<h1 class="page-title">我报名的项目</h1>
|
|
<p class="page-subtitle">查看您已报名的项目,跟踪项目状态</p>
|
|
|
|
<!-- #2~#5 筛选(对应 u11811/u11813/u11814/u11816/u11830/u11832/u11817) -->
|
|
<div class="card">
|
|
<div class="filter-row">
|
|
<div class="filter-field">
|
|
<span class="filter-label">项目编号:</span>
|
|
<input type="text" class="filter-input" placeholder="输入项目编号">
|
|
</div>
|
|
<div class="filter-field">
|
|
<span class="filter-label">项目名称:</span>
|
|
<input type="text" class="filter-input" placeholder="输入项目名称">
|
|
</div>
|
|
<div class="filter-field">
|
|
<span class="filter-label">会议名称:</span>
|
|
<input type="text" class="filter-input" placeholder="输入会议名称">
|
|
</div>
|
|
<button class="filter-btn">查找</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- #6~#9 表格(对应 u11801~u11837) -->
|
|
<div class="card" style="padding: 0;">
|
|
<table class="data-table">
|
|
<thead>
|
|
<tr>
|
|
<th>项目编号</th>
|
|
<th>项目名称</th>
|
|
<th>会议名称</th>
|
|
<th>状态</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="row-link" data-href="project-detail.html">
|
|
<td><a class="col-code" href="javascript:void(0)">ZH-2026-658</a></td>
|
|
<td><a class="col-name" href="javascript:void(0)">小牛血清创新应用研讨会</a></td>
|
|
<td>小牛血清创新应用研讨会</td>
|
|
<td><span class="status-tag">已报名</span></td>
|
|
<td>
|
|
<a class="op-link" href="project-detail.html">查看</a>
|
|
<a class="op-link" href="javascript:void(0)">查看公示</a>
|
|
<a class="op-link" href="javascript:void(0)">下载</a>
|
|
</td>
|
|
</tr>
|
|
<tr class="row-link" data-href="project-detail.html">
|
|
<td><a class="col-code" href="javascript:void(0)">ZH-2026-650</a></td>
|
|
<td><a class="col-name" href="javascript:void(0)">整合医学学会项目评审会</a></td>
|
|
<td>整合医学学会项目评审会</td>
|
|
<td><span class="status-tag">已报名</span></td>
|
|
<td>
|
|
<a class="op-link" href="project-detail.html">查看</a>
|
|
<a class="op-link" href="javascript:void(0)">查看公示</a>
|
|
<a class="op-link" href="javascript:void(0)">下载</a>
|
|
</td>
|
|
</tr>
|
|
<tr class="row-link" data-href="project-detail.html">
|
|
<td><a class="col-code" href="javascript:void(0)">ZH-2026-645</a></td>
|
|
<td><a class="col-name" href="javascript:void(0)">基层医疗改革试点中期评估</a></td>
|
|
<td>基层医疗改革试点中期评估</td>
|
|
<td><span class="status-tag">已报名</span></td>
|
|
<td>
|
|
<a class="op-link" href="project-detail.html">查看</a>
|
|
<a class="op-link" href="javascript:void(0)">查看公示</a>
|
|
<a class="op-link" href="javascript:void(0)">下载</a>
|
|
</td>
|
|
</tr>
|
|
<tr class="row-link" data-href="project-detail.html">
|
|
<td><a class="col-code" href="javascript:void(0)">ZH-2026-640</a></td>
|
|
<td><a class="col-name" href="javascript:void(0)">智慧医院建设项目方案论证</a></td>
|
|
<td>智慧医院建设项目方案论证</td>
|
|
<td><span class="status-tag">已报名</span></td>
|
|
<td>
|
|
<a class="op-link" href="project-detail.html">查看</a>
|
|
<a class="op-link" href="javascript:void(0)">查看公示</a>
|
|
<a class="op-link" href="javascript:void(0)">下载</a>
|
|
</td>
|
|
</tr>
|
|
<tr class="row-link" data-href="project-detail.html">
|
|
<td><a class="col-code" href="javascript:void(0)">ZH-2026-635</a></td>
|
|
<td><a class="col-name" href="javascript:void(0)">数字化医疗转型方案评审</a></td>
|
|
<td>数字化医疗转型方案评审</td>
|
|
<td><span class="status-tag">已报名</span></td>
|
|
<td>
|
|
<a class="op-link" href="project-detail.html">查看</a>
|
|
<a class="op-link" href="javascript:void(0)">查看公示</a>
|
|
<a class="op-link" href="javascript:void(0)">下载</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- #9 红字提示(对应 u11837) -->
|
|
<p class="hint-text" style="padding: 0 16px 16px;">*下载项目公示的红头文件</p>
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<script>
|
|
function goHome() {
|
|
try {
|
|
if (window.parent && window.parent.document.getElementById('contentFrame')) {
|
|
window.parent.document.getElementById('contentFrame').src = 'home.html';
|
|
}
|
|
} catch (e) {}
|
|
}
|
|
|
|
// 行点击跳转:点 tr 的非链接区域 → iframe 加载目标页
|
|
document.querySelectorAll('tr.row-link').forEach(row => {
|
|
row.addEventListener('click', function(e) {
|
|
// 如果点的是操作列里的链接,不拦截(让链接自己处理)
|
|
if (e.target.closest('a')) return;
|
|
const href = this.dataset.href;
|
|
if (!href) return;
|
|
try {
|
|
if (window.parent && window.parent.document.getElementById('contentFrame')) {
|
|
window.parent.document.getElementById('contentFrame').src = href;
|
|
} else {
|
|
window.location.href = href;
|
|
}
|
|
} catch (err) {
|
|
window.location.href = href;
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |