主要改动: - 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)
276 lines
14 KiB
HTML
276 lines
14 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
============================================================
|
|
角色: 🟦 后台 父级: admin.html (iframe#contentFrame)
|
|
来源: 原型/专家管理.html + 原型/files/专家管理/styles.css
|
|
============================================================
|
|
按 top 升序的内容区模块:
|
|
面包屑 (T42) → 工作台 > 专家管理
|
|
h1 标题 → 专家管理
|
|
筛选区 (T169-174):
|
|
u13533 姓名 / u13536 手机号 / u13553 工作单位
|
|
工具按钮 (T226):
|
|
u13540 新建专家 / u13548 批量导入 / u13615 批量审核
|
|
表格表头 (T296) 7 列:
|
|
u13521 姓名 / u13523 手机号 / u13527 工作单位 / u13555 科室
|
|
/ u13557 职称 / u13529 证书 / u13531 操作
|
|
表格行内嵌操作 (T346):
|
|
u13542 审核 / u13550 修改 / u13544 查看 / u13729 禁用 (行尾)
|
|
u13631 查看 / u13633 下载 (证书区)
|
|
数据行 (T350-T645) 7 行
|
|
============================================================
|
|
自检:
|
|
✅ 全部内容区按 top 提取
|
|
✅ 无动态面板 (ax_default_hidden = 0)
|
|
✅ 框架区排除: 侧边栏 / 顶栏 / 竖线(u13748 L220) / 横线(u13525 T329)
|
|
✅ 双重操作列均映射 (证书 2 项 + 行尾 4 项)
|
|
============================================================
|
|
-->
|
|
<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:16px}
|
|
.breadcrumb a{color:#1890ff;text-decoration:none;cursor:pointer}
|
|
.breadcrumb a:hover{text-decoration:underline}
|
|
.breadcrumb .sep{margin:0 6px;color:#bfbfbf}
|
|
.breadcrumb .current{color:#595959}
|
|
.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}
|
|
.filter-row{display:flex;flex-wrap:wrap;gap:12px 16px;align-items:center}
|
|
.filter-field{flex:0 0 240px;display:flex;align-items:center;gap:8px}
|
|
.filter-label{font-size:14px;color:#595959;white-space:nowrap;flex-shrink:0}
|
|
.filter-input{flex:1;min-width:0;height:32px;padding:0 10px;border:1px solid #d9d9d9;border-radius:4px;font-size:13px;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:32px;padding:0 24px;background:#1890ff;color:#fff;border:none;border-radius:4px;font-size:13px;cursor:pointer;flex:0 0 auto}
|
|
.filter-btn:hover{background:#096dd9}
|
|
.toolbar{display:flex;justify-content:flex-end;gap:8px;margin-bottom:16px}
|
|
.toolbar-btn{height:32px;padding:0 18px;border-radius:4px;font-size:13px;cursor:pointer;border:1px solid #d9d9d9;background:#fff;color:#595959}
|
|
.toolbar-btn:hover{color:#1890ff;border-color:#1890ff}
|
|
.toolbar-btn-primary{background:#1890ff;color:#fff;border-color:#1890ff}
|
|
.toolbar-btn-primary:hover{background:#096dd9;border-color:#096dd9;color:#fff}
|
|
.table-wrap{background:#fff;border:1px solid #f0f0f0;border-radius:8px;overflow-x:auto}
|
|
.data-table{width:100%;border-collapse:collapse;font-size:13px;table-layout:auto;min-width:1200px}
|
|
.data-table thead th{background:#fafafa;padding:12px;text-align:left;color:#1a1a1a;font-weight:600;border-bottom:1px solid #f0f0f0;white-space:nowrap}
|
|
.data-table tbody td{padding:12px;border-bottom:1px solid #f5f5f5;color:#595959;vertical-align:middle}
|
|
.data-table tbody tr:hover{background:#fafcff}
|
|
.col-name{color:#1a1a1a;font-weight:500}
|
|
.op-link{color:#1890ff;text-decoration:none;margin-right:8px;font-size:12px}
|
|
.op-link:hover{text-decoration:underline}
|
|
.op-link.danger{color:#ff4d4f}
|
|
.op-cell{display:flex;flex-direction:column;gap:4px;align-items:flex-start}
|
|
.checkbox{cursor:pointer}
|
|
@media(max-width:768px){.filter-row{gap:12px}.filter-field{flex:0 0 100%}.content{padding:16px}}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main class="content">
|
|
|
|
<div class="breadcrumb">
|
|
<a href="javascript:void(0)" onclick="navigateTo('admin-home.html')">工作台</a>
|
|
<span class="sep">></span>
|
|
<span class="current">专家管理</span>
|
|
</div>
|
|
|
|
<h1 class="page-title">专家管理</h1>
|
|
|
|
<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>
|
|
|
|
<div class="toolbar">
|
|
<button class="toolbar-btn" onclick="navigateTo('admin-expert-batch.html')">批量审核</button>
|
|
<button class="toolbar-btn" onclick="navigateTo('admin-expert-batch.html')">批量导入</button>
|
|
<button class="toolbar-btn toolbar-btn-primary" onclick="navigateTo('admin-expert-edit.html')">新建专家</button>
|
|
</div>
|
|
|
|
<div class="table-wrap">
|
|
<table class="data-table">
|
|
<thead>
|
|
<tr>
|
|
<th class="checkbox-cell" style="width:40px"><input type="checkbox" class="checkbox"></th>
|
|
<th>姓名</th><th>手机号</th><th>工作单位</th><th>科室</th>
|
|
<th>职称</th><th>证书</th><th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><input type="checkbox" class="checkbox"></td>
|
|
<td><a class="col-name op-link" href="javascript:void(0)">张三</a></td>
|
|
<td>13534621147</td>
|
|
<td>北京XXXXXXX医院</td>
|
|
<td>呼吸科</td>
|
|
<td>主任医师</td>
|
|
<td>
|
|
<div class="op-cell">
|
|
<a class="op-link" href="javascript:void(0)">查看</a>
|
|
<a class="op-link" href="javascript:void(0)">下载</a>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="op-cell">
|
|
<a class="op-link" href="javascript:void(0)">审核</a>
|
|
<a class="op-link" href="javascript:void(0)">修改</a>
|
|
<a class="op-link" href="javascript:void(0)">查看</a>
|
|
<a class="op-link danger" href="javascript:void(0)">禁用</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><input type="checkbox" class="checkbox"></td>
|
|
<td><a class="col-name op-link" href="javascript:void(0)">李四</a></td>
|
|
<td>13534621147</td>
|
|
<td>北京XXXXXXX医院</td>
|
|
<td>血液科</td>
|
|
<td>副主任医师</td>
|
|
<td>
|
|
<div class="op-cell">
|
|
<a class="op-link" href="javascript:void(0)">查看</a>
|
|
<a class="op-link" href="javascript:void(0)">下载</a>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="op-cell">
|
|
<a class="op-link" href="javascript:void(0)">审核</a>
|
|
<a class="op-link" href="javascript:void(0)">修改</a>
|
|
<a class="op-link" href="javascript:void(0)">查看</a>
|
|
<a class="op-link danger" href="javascript:void(0)">禁用</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><input type="checkbox" class="checkbox"></td>
|
|
<td><a class="col-name op-link" href="javascript:void(0)">张三</a></td>
|
|
<td>13534621147</td>
|
|
<td>北京XXXXXXX医院</td>
|
|
<td>呼吸科</td>
|
|
<td>主任医师</td>
|
|
<td>
|
|
<div class="op-cell">
|
|
<a class="op-link" href="javascript:void(0)">查看</a>
|
|
<a class="op-link" href="javascript:void(0)">下载</a>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="op-cell">
|
|
<a class="op-link" href="javascript:void(0)">审核</a>
|
|
<a class="op-link" href="javascript:void(0)">修改</a>
|
|
<a class="op-link" href="javascript:void(0)">查看</a>
|
|
<a class="op-link danger" href="javascript:void(0)">禁用</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><input type="checkbox" class="checkbox"></td>
|
|
<td><a class="col-name op-link" href="javascript:void(0)">李四</a></td>
|
|
<td>13534621147</td>
|
|
<td>北京XXXXXXX医院</td>
|
|
<td>血液科</td>
|
|
<td>副主任医师</td>
|
|
<td>
|
|
<div class="op-cell">
|
|
<a class="op-link" href="javascript:void(0)">查看</a>
|
|
<a class="op-link" href="javascript:void(0)">下载</a>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="op-cell">
|
|
<a class="op-link" href="javascript:void(0)">审核</a>
|
|
<a class="op-link" href="javascript:void(0)">修改</a>
|
|
<a class="op-link" href="javascript:void(0)">查看</a>
|
|
<a class="op-link danger" href="javascript:void(0)">禁用</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><input type="checkbox" class="checkbox"></td>
|
|
<td><a class="col-name op-link" href="javascript:void(0)">张三</a></td>
|
|
<td>13534621147</td>
|
|
<td>北京XXXXXXX医院</td>
|
|
<td>呼吸科</td>
|
|
<td>主任医师</td>
|
|
<td>
|
|
<div class="op-cell">
|
|
<a class="op-link" href="javascript:void(0)">查看</a>
|
|
<a class="op-link" href="javascript:void(0)">下载</a>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="op-cell">
|
|
<a class="op-link" href="javascript:void(0)">审核</a>
|
|
<a class="op-link" href="javascript:void(0)">修改</a>
|
|
<a class="op-link" href="javascript:void(0)">查看</a>
|
|
<a class="op-link danger" href="javascript:void(0)">禁用</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><input type="checkbox" class="checkbox"></td>
|
|
<td><a class="col-name op-link" href="javascript:void(0)">李四</a></td>
|
|
<td>13534621147</td>
|
|
<td>北京XXXXXXX医院</td>
|
|
<td>血液科</td>
|
|
<td>副主任医师</td>
|
|
<td>
|
|
<div class="op-cell">
|
|
<a class="op-link" href="javascript:void(0)">查看</a>
|
|
<a class="op-link" href="javascript:void(0)">下载</a>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="op-cell">
|
|
<a class="op-link" href="javascript:void(0)">审核</a>
|
|
<a class="op-link" href="javascript:void(0)">修改</a>
|
|
<a class="op-link" href="javascript:void(0)">查看</a>
|
|
<a class="op-link danger" href="javascript:void(0)">禁用</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td><input type="checkbox" class="checkbox"></td>
|
|
<td><a class="col-name op-link" href="javascript:void(0)">张三</a></td>
|
|
<td>13534621147</td>
|
|
<td>北京XXXXXXX医院</td>
|
|
<td>呼吸科</td>
|
|
<td>主任医师</td>
|
|
<td>
|
|
<div class="op-cell">
|
|
<a class="op-link" href="javascript:void(0)">查看</a>
|
|
<a class="op-link" href="javascript:void(0)">下载</a>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<div class="op-cell">
|
|
<a class="op-link" href="javascript:void(0)">审核</a>
|
|
<a class="op-link" href="javascript:void(0)">修改</a>
|
|
<a class="op-link" href="javascript:void(0)">查看</a>
|
|
<a class="op-link danger" href="javascript:void(0)">禁用</a>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</main>
|
|
<script>
|
|
function navigateTo(href) {
|
|
try {
|
|
if (window.parent && window.parent.document.getElementById('contentFrame')) {
|
|
window.parent.document.getElementById('contentFrame').src = href;
|
|
} else { window.location.href = href; }
|
|
} catch (e) { window.location.href = href; }
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |