主要改动: - 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)
322 lines
11 KiB
HTML
322 lines
11 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;
|
|
}
|
|
|
|
.page-header {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.page-title {
|
|
font-size: 22px;
|
|
font-weight: 600;
|
|
color: #1a1a1a;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.page-subtitle {
|
|
font-size: 13px;
|
|
color: #8c8c8c;
|
|
}
|
|
|
|
.card {
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
padding: 20px 24px;
|
|
margin-bottom: 16px;
|
|
border: 1px solid #f0f0f0;
|
|
}
|
|
|
|
/* ============= 筛选区 ============= */
|
|
.filter-row {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr) auto 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;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.filter-input,
|
|
.filter-select {
|
|
flex: 1;
|
|
height: 32px;
|
|
padding: 0 10px;
|
|
border: 1px solid #d9d9d9;
|
|
border-radius: 4px;
|
|
font-size: 13px;
|
|
color: #333;
|
|
background: #fff;
|
|
outline: none;
|
|
}
|
|
|
|
.filter-input:focus,
|
|
.filter-select:focus {
|
|
border-color: #1890ff;
|
|
box-shadow: 0 0 0 3px rgba(24,144,255,0.1);
|
|
}
|
|
|
|
.filter-select {
|
|
cursor: pointer;
|
|
appearance: none;
|
|
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
|
|
background-repeat: no-repeat;
|
|
background-position: right 10px center;
|
|
background-size: 14px;
|
|
padding-right: 24px;
|
|
}
|
|
|
|
.filter-btn {
|
|
height: 32px;
|
|
padding: 0 24px;
|
|
background: #1890ff;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 13px;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.filter-btn:hover { background: #096dd9; }
|
|
|
|
.filter-btn.export {
|
|
background: #fff;
|
|
color: #595959;
|
|
border: 1px solid #d9d9d9;
|
|
}
|
|
|
|
.filter-btn.export:hover {
|
|
border-color: #1890ff;
|
|
color: #1890ff;
|
|
}
|
|
|
|
/* ============= 备注 ============= */
|
|
.hint-text {
|
|
font-size: 12px;
|
|
color: #ff4d4f;
|
|
margin: 12px 0;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* ============= 表格 ============= */
|
|
.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: fixed;
|
|
min-width: 1300px;
|
|
}
|
|
|
|
.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;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.data-table tbody tr:hover { background: #fafcff; }
|
|
|
|
/* 列宽(基于原型坐标) */
|
|
.col-code { width: 15%; font-family: ui-monospace, "Courier New", monospace; }
|
|
.col-name { width: 16%; }
|
|
.col-person { width: 8%; }
|
|
.col-org { width: 11%; }
|
|
.col-dept { width: 7%; }
|
|
.col-title { width: 10%; }
|
|
.col-phone { width: 11%; }
|
|
.col-status { width: 10%; text-align: center; }
|
|
|
|
.col-code-link {
|
|
color: #1890ff;
|
|
font-family: ui-monospace, "Courier New", monospace;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.col-code-link:hover { text-decoration: underline; }
|
|
|
|
.col-name-link {
|
|
color: #1a1a1a;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.col-name-link:hover { color: #1890ff; }
|
|
|
|
.status-tag {
|
|
display: inline-block;
|
|
padding: 2px 10px;
|
|
border-radius: 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.status-normal { background: #f6ffed; color: #52c41a; }
|
|
.status-pending { background: #fff7e6; color: #fa8c16; }
|
|
.status-disabled { background: #fff1f0; color: #ff4d4f; }
|
|
|
|
@media (max-width: 768px) {
|
|
.filter-row { grid-template-columns: 1fr; }
|
|
.content { padding: 16px; }
|
|
.data-table { font-size: 12px; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main class="content">
|
|
|
|
<div class="page-header">
|
|
<h1 class="page-title">支持意向</h1>
|
|
<p class="page-subtitle">查看所有支持意向记录</p>
|
|
</div>
|
|
|
|
<!-- 筛选区 -->
|
|
<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>
|
|
<button class="filter-btn export">导出</button>
|
|
</div>
|
|
</div>
|
|
|
|
<p class="hint-text">*项目公示中点击支持意向后,显示在此</p>
|
|
<p class="hint-text">*根据手机号与系统账号进行匹配</p>
|
|
<p class="hint-text">*支持意向不需要注册,但是如果已经注册账号,则显示账号状态</p>
|
|
|
|
<!-- 表格 -->
|
|
<div class="table-wrap">
|
|
<table class="data-table">
|
|
<colgroup>
|
|
<col class="col-code">
|
|
<col class="col-name">
|
|
<col class="col-person">
|
|
<col class="col-org">
|
|
<col class="col-dept">
|
|
<col class="col-title">
|
|
<col class="col-phone">
|
|
<col class="col-status">
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th>支持意向项目编号</th>
|
|
<th>支持意向项目名称</th>
|
|
<th>姓名</th>
|
|
<th>工作单位名称</th>
|
|
<th>部门</th>
|
|
<th>职务</th>
|
|
<th>手机号</th>
|
|
<th class="col-status">账号状态</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><a class="col-code-link" href="javascript:void(0)">ZH-2026-658</a></td>
|
|
<td><a class="col-name-link" href="javascript:void(0)">小牛血清创新应用研讨会</a></td>
|
|
<td>张三</td>
|
|
<td>北京XXXXXXX公司</td>
|
|
<td>华北大区</td>
|
|
<td>项目负责人</td>
|
|
<td>13534621147</td>
|
|
<td class="col-status"><span class="status-tag status-normal">存在</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td><a class="col-code-link" href="javascript:void(0)">ZH-2026-659</a></td>
|
|
<td><a class="col-name-link" href="javascript:void(0)">整合医学学会项目评审</a></td>
|
|
<td>李四</td>
|
|
<td>北京XXXXXXX公司</td>
|
|
<td>华北大区</td>
|
|
<td>项目负责人</td>
|
|
<td>13534621148</td>
|
|
<td class="col-status"><span class="status-tag status-normal">存在</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td><a class="col-code-link" href="javascript:void(0)">ZH-2026-650</a></td>
|
|
<td><a class="col-name-link" href="javascript:void(0)">智慧医院建设项目</a></td>
|
|
<td>张三</td>
|
|
<td>北京XXXXXXX公司</td>
|
|
<td>华北大区</td>
|
|
<td>项目负责人</td>
|
|
<td>13534621149</td>
|
|
<td class="col-status"><span class="status-tag status-pending">不存在</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td><a class="col-code-link" href="javascript:void(0)">ZH-2026-645</a></td>
|
|
<td><a class="col-name-link" href="javascript:void(0)">基层医疗改革试点项目</a></td>
|
|
<td>李四</td>
|
|
<td>北京XXXXXXX公司</td>
|
|
<td>华北大区</td>
|
|
<td>项目负责人</td>
|
|
<td>13534621150</td>
|
|
<td class="col-status"><span class="status-tag status-normal">存在</span></td>
|
|
</tr>
|
|
<tr>
|
|
<td><a class="col-code-link" href="javascript:void(0)">ZH-2026-640</a></td>
|
|
<td><a class="col-name-link" href="javascript:void(0)">数字化医疗转型方案</a></td>
|
|
<td>张三</td>
|
|
<td>北京XXXXXXX公司</td>
|
|
<td>华北大区</td>
|
|
<td>项目负责人</td>
|
|
<td>13534621151</td>
|
|
<td class="col-status"><span class="status-tag status-pending">不存在</span></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</main>
|
|
</body>
|
|
</html> |