Files
guoju0808/proto/html/components/meeting-detail-executor.html
T
郭庆泰 cf5790229a refactor: 合并 biz_support_unit/biz_execution_unit/biz_service_org 为 biz_org, 删除 2 张孤儿表, 改 biz_person.work_unit → org_id FK
主要改动:
- 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)
2026-08-15 12:41:10 +08:00

225 lines
16 KiB
HTML

<!DOCTYPE html>
<!--
角色: 执行方
父级: executor.html
原型: 原型/会议详情页__1_.html
布局: 上-会议基本信息 / 下-左Tab+右时间线
-->
<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: 20px; }
.card { background: #fff; border-radius: 8px; padding: 20px 24px; margin-bottom: 16px; border: 1px solid #f0f0f0; }
.section-title { font-size: 16px; font-weight: 600; color: #1a1a1a; margin-bottom: 16px; padding-left: 10px; border-left: 3px solid #1890ff; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.info-row { display: flex; align-items: center; }
.info-label { flex: 0 0 110px; font-size: 14px; color: #595959; text-align: right; white-space: nowrap; padding-right: 16px; }
.info-value { font-size: 14px; color: #1a1a1a; }
.info-value.code { font-family: ui-monospace, "Courier New", monospace; color: #1890ff; }
/* 下部分:左Tab+右时间线2列 */
.cols-row { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; margin-bottom: 16px; }
.tabs { display: flex; gap: 0; border-bottom: 1px solid #e8e8e8; margin-bottom: 16px; }
.tab { padding: 10px 16px; font-size: 14px; color: #595959; cursor: pointer; border-bottom: 2px solid transparent; background: none; border-top: none; border-left: none; border-right: none; margin-bottom: -1px; }
.tab:hover { color: #1890ff; }
.tab.active { color: #1890ff; border-bottom-color: #1890ff; font-weight: 600; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.file-list { display: flex; flex-direction: column; gap: 10px; }
.file-item { display: flex; align-items: center; gap: 12px; }
.file-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 6px 0; }
.file-label { font-size: 14px; color: #595959; width: 80px; }
.file-input { width: 160px; height: 28px; padding: 0 10px; border: 1px solid #d9d9d9; border-radius: 3px; font-size: 12px; color: #8c8c8c; background: #fafafa; }
.file-hint { font-size: 11px; color: #8c8c8c; white-space: nowrap; }
.upload-btn { height: 28px; padding: 0 16px; background: #fff; border: 1px solid #d9d9d9; color: #595959; border-radius: 3px; font-size: 12px; cursor: pointer; }
.upload-btn:hover { border-color: #1890ff; color: #1890ff; }
.primary-btn { height: 32px; padding: 0 20px; background: #1890ff; color: #fff; border: none; border-radius: 4px; font-size: 13px; cursor: pointer; }
.primary-btn:hover { background: #096dd9; }
.default-btn { height: 32px; padding: 0 20px; background: #fff; color: #333; border: 1px solid #d9d9d9; border-radius: 4px; font-size: 13px; cursor: pointer; }
.default-btn:hover { border-color: #1890ff; color: #1890ff; }
.file-link { color: #1890ff; text-decoration: none; font-size: 14px; }
.file-link:hover { text-decoration: underline; }
.timeline { position: relative; padding-left: 24px; border-left: 2px solid #e8e8e8; }
.timeline-item { padding: 8px 0 16px 16px; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: -29px; top: 10px; width: 10px; height: 10px; border-radius: 50%; background: #1890ff; }
.timeline-item.done::before { background: #52c41a; }
.timeline-title { font-size: 14px; font-weight: 600; color: #1a1a1a; margin-bottom: 4px; }
.timeline-desc { font-size: 12px; color: #8c8c8c; line-height: 1.6; }
.hint-text { font-size: 12px; color: #ff4d4f; margin-top: 12px; line-height: 1.6; }
.letter-body { max-width: 600px; font-size: 14px; line-height: 2; color: #1a1a1a; white-space: pre-line; padding: 12px 0; }
.form-actions { display: flex; justify-content: flex-start; padding: 24px 0 0; }
.btn-default { height: 36px; padding: 0 32px; background: #fff; color: #333; border: 1px solid #d9d9d9; border-radius: 4px; font-size: 14px; cursor: pointer; }
.btn-default:hover { border-color: #1890ff; color: #1890ff; }
@media (max-width: 768px) { .content { padding: 16px; } .card { padding: 16px; } .info-grid { grid-template-columns: 1fr; } .cols-row { grid-template-columns: 1fr; } .tab { padding: 8px 12px; font-size: 12px; } }
</style>
</head>
<body>
<main class="content">
<div class="breadcrumb">
<a href="javascript:void(0)" onclick="goBack()">会议管理</a> &gt; 会议详情
</div>
<h1 class="page-title">会议详情</h1>
<!-- 左(基本信息+Tab) + 右(时间轴) -->
<div class="cols-row">
<div>
<!-- 会议基本信息 -->
<div class="card">
<div class="section-title">会议基本信息</div>
<div class="info-grid">
<div class="info-row"><span class="info-label">项目编号:</span><span class="info-value code">ZH-2026-658</span></div>
<div class="info-row"><span class="info-label">会议名称:</span><span class="info-value">小牛血清创新应用研讨会</span></div>
<div class="info-row"><span class="info-label">项目名称:</span><span class="info-value">小牛血清创新应用研讨会</span></div>
<div class="info-row"><span class="info-label">期数:</span><span class="info-value">3/26</span></div>
<div class="info-row"><span class="info-label">总场次/总期数:</span><span class="info-value">26</span></div>
<div class="info-row"><span class="info-label">会议开始时间:</span><span class="info-value">2026.05.13 11:30</span></div>
<div class="info-row"><span class="info-label">支持单位:</span><span class="info-value">北京XXXX有限公司</span></div>
<div class="info-row"><span class="info-label">会议结束时间:</span><span class="info-value">2026.05.15 11:30</span></div>
<div class="info-row"><span class="info-label">创建时间:</span><span class="info-value">2026.05.11 11:30</span></div>
<div class="info-row"><span class="info-label">创建人员:</span><span class="info-value">张三</span></div>
</div>
</div>
<!-- 材料管理Tab -->
<div class="card">
<div class="section-title">材料管理</div>
<div class="tabs">
<button class="tab active" onclick="switchTab(event,'tab1')">会务材料</button>
<button class="tab" onclick="switchTab(event,'tab2')">劳务材料</button>
<button class="tab" onclick="switchTab(event,'tab3')">劳务凭证</button>
<button class="tab" onclick="switchTab(event,'tab4')">会务凭证</button>
</div>
<div id="tab1" class="tab-panel active">
<div class="file-list">
<div class="file-row">
<span class="file-label">物料制作:</span><input type="text" class="file-input" placeholder="选择文件" readonly><button class="upload-btn" onclick="this.previousElementSibling.value='已上传'">上传</button>
<span class="file-hint">提示:物料实物照片,盖章版结算单,发票</span>
</div>
<div class="file-row">
<span class="file-label">酒店:</span><input type="text" class="file-input" placeholder="选择文件" readonly><button class="upload-btn" onclick="this.previousElementSibling.value='已上传'">上传</button>
<span class="file-hint">提示:酒店盖章版水单,酒店发票(餐饮普票,住宿场地费专票)</span>
</div>
<div class="file-row">
<span class="file-label">大交通:</span><input type="text" class="file-input" placeholder="选择文件" readonly><button class="upload-btn" onclick="this.previousElementSibling.value='已上传'">上传</button>
<span class="file-hint">提示:行程单/盖章版结算单,发票</span>
</div>
<div class="file-row">
<span class="file-label">小交通:</span><input type="text" class="file-input" placeholder="选择文件" readonly><button class="upload-btn" onclick="this.previousElementSibling.value='已上传'">上传</button>
<span class="file-hint">提示:行程单/盖章版结算单,发票</span>
</div>
<div class="file-row">
<span class="file-label">执行费:</span><input type="text" class="file-input" placeholder="选择文件" readonly><button class="upload-btn" onclick="this.previousElementSibling.value='已上传'">上传</button>
<span class="file-hint">提示:合同,盖章版结算单,发票,其他材料</span>
</div>
<div class="file-row">
<span class="file-label">设计费:</span><input type="text" class="file-input" placeholder="选择文件" readonly><button class="upload-btn" onclick="this.previousElementSibling.value='已上传'">上传</button>
<span class="file-hint">提示:设计稿,PPT</span>
</div>
<div class="file-row">
<span class="file-label">其他:</span><input type="text" class="file-input" placeholder="选择文件" readonly><button class="upload-btn" onclick="this.previousElementSibling.value='已上传'">上传</button>
</div>
<div class="file-row">
<span class="file-label">总结算单:</span><input type="text" class="file-input" placeholder="选择文件" readonly><button class="upload-btn" onclick="this.previousElementSibling.value='已上传'">上传</button>
</div>
<div class="file-row">
<span class="file-label">总发票:</span><input type="text" class="file-input" placeholder="选择文件" readonly><button class="upload-btn" onclick="this.previousElementSibling.value='已上传'">上传</button>
<span class="file-hint">*总发票单独推送至OA,单独下载</span>
</div>
</div>
</div>
<div id="tab2" class="tab-panel">
<div class="file-list">
<div class="file-item"><span class="file-label">劳务明细表:</span><a class="file-link" href="javascript:void(0)">劳务明细表下载</a></div>
<div class="file-item"><span class="file-label">劳务协议:</span><a class="file-link" href="javascript:void(0)">劳务协议.zip</a></div>
</div>
</div>
<div id="tab3" class="tab-panel">
<div class="file-list">
<div class="file-row"><span class="file-label">劳务付款凭证:</span><input type="text" class="file-input" placeholder="选择文件" readonly><button class="upload-btn" onclick="this.previousElementSibling.value='已上传'">上传</button><span class="file-hint">提示:劳务付款凭证文件</span></div>
</div>
</div>
<div id="tab4" class="tab-panel">
<div class="file-list">
<div class="file-row"><span class="file-label">会务付款凭证:</span><input type="text" class="file-input" placeholder="选择文件" readonly><button class="upload-btn" onclick="this.previousElementSibling.value='已上传'">上传</button><span class="file-hint">提示:会务付款凭证文件</span></div>
</div>
</div>
<div style="margin-top:16px;padding-top:16px;border-top:1px solid #f0f0f0;display:flex;gap:12px;align-items:center;flex-wrap:wrap;">
<button class="default-btn" onclick="alert('请先下载模板')">打包上传</button>
<a class="file-link" href="javascript:void(0)">会务材料文件夹模板下载</a>
<span style="flex:1"></span>
<button class="primary-btn" onclick="alert('提交审核成功')">提交审核</button>
<button class="primary-btn" onclick="alert('保存成功')">保存</button>
</div>
<p class="hint-text" style="margin-top:12px;">*结算后,已完结状态,执行方不能再进行编辑</p>
</div>
</div>
<!-- 右侧:审核时间轴 -->
<div class="card">
<div class="section-title">审核时间轴</div>
<div class="timeline">
<div class="timeline-item done">
<div class="timeline-title">执行方提交材料</div>
<div class="timeline-desc">已提交 · 2026.05.15 11:30</div>
</div>
<div class="timeline-item done">
<div class="timeline-title">会议已执行</div>
<div class="timeline-desc">2026.05.25 10:30</div>
</div>
<div class="timeline-item done">
<div class="timeline-title">合规审核</div>
<div class="timeline-desc">已通过 · 材料完整 · 2026.05.30 14:30</div>
</div>
<div class="timeline-item">
<div class="timeline-title">监察意见</div>
<div class="timeline-desc">通过 · 材料完整 · 2026.06.03 15:30</div>
</div>
</div>
</div>
</div>
<!-- 返回 -->
<div class="form-actions">
<button type="button" class="btn-default" onclick="goBack()">返回</button>
</div>
</main>
<script>
function switchTab(evt, id) {
document.querySelectorAll('.tab').forEach(t => t.classList.remove('active'));
document.querySelectorAll('.tab-panel').forEach(p => p.classList.remove('active'));
evt.target.classList.add('active');
document.getElementById(id).classList.add('active');
}
function goBack() {
try {
if (window.parent && window.parent.document.getElementById('contentFrame')) {
window.parent.document.getElementById('contentFrame').src = 'meeting-manage.html';
} else { history.back(); }
} catch (e) { history.back(); }
}
</script>
</body>
</html>