feat: 初始化静态镜像站点仓库
This commit is contained in:
255
__mirror/runtime/index.html
Normal file
255
__mirror/runtime/index.html
Normal file
@@ -0,0 +1,255 @@
|
||||
<!doctype html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>运行态镜像入口</title>
|
||||
<style>
|
||||
:root {
|
||||
--bg: #0b1220;
|
||||
--panel: #121a2b;
|
||||
--text: #eef4ff;
|
||||
--muted: #92a4c4;
|
||||
--border: rgba(255,255,255,0.08);
|
||||
--accent: #4aa3ff;
|
||||
--accent-2: #45d2a0;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
min-height: 100vh;
|
||||
padding: 40px 20px;
|
||||
background:
|
||||
radial-gradient(circle at top left, rgba(74,163,255,0.16), transparent 30%),
|
||||
radial-gradient(circle at bottom right, rgba(69,210,160,0.12), transparent 28%),
|
||||
var(--bg);
|
||||
color: var(--text);
|
||||
font: 16px/1.6 -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", sans-serif;
|
||||
}
|
||||
|
||||
.wrap {
|
||||
width: min(980px, 100%);
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0 0 12px;
|
||||
font-size: 32px;
|
||||
line-height: 1.15;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0 0 28px;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||||
gap: 18px;
|
||||
}
|
||||
|
||||
.card {
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 20px;
|
||||
background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
|
||||
padding: 22px 20px;
|
||||
box-shadow: 0 20px 48px rgba(0,0,0,0.24);
|
||||
}
|
||||
|
||||
.tag {
|
||||
display: inline-block;
|
||||
margin-bottom: 10px;
|
||||
padding: 4px 10px;
|
||||
border-radius: 999px;
|
||||
background: rgba(255,255,255,0.07);
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin: 0 0 10px;
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.link-groups {
|
||||
display: grid;
|
||||
gap: 16px;
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
.group {
|
||||
padding-top: 16px;
|
||||
border-top: 1px solid rgba(255,255,255,0.06);
|
||||
}
|
||||
|
||||
.group:first-of-type {
|
||||
padding-top: 0;
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
.group-title {
|
||||
margin: 0 0 10px;
|
||||
color: var(--muted);
|
||||
font-size: 13px;
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
|
||||
.actions {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-width: 140px;
|
||||
padding: 11px 16px;
|
||||
border-radius: 12px;
|
||||
border: 1px solid var(--border);
|
||||
color: var(--text);
|
||||
background: rgba(255,255,255,0.04);
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.btn.primary {
|
||||
background: var(--accent);
|
||||
color: #06101f;
|
||||
border-color: transparent;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.btn.secondary {
|
||||
background: var(--accent-2);
|
||||
color: #062118;
|
||||
border-color: transparent;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.btn.subtle {
|
||||
border-color: rgba(255,255,255,0.06);
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 2px 7px;
|
||||
border-radius: 999px;
|
||||
background: rgba(255,255,255,0.08);
|
||||
color: var(--muted);
|
||||
font-size: 11px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.badge.warn {
|
||||
background: rgba(255, 196, 92, 0.16);
|
||||
color: #ffd782;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<main class="wrap">
|
||||
<h1>运行态镜像入口</h1>
|
||||
<p>这里汇总了两个后台的本地运行态入口。优先使用“运行态”地址,它比静态快照更接近真实站点。</p>
|
||||
<section class="grid">
|
||||
<article class="card">
|
||||
<span class="tag">项目运营平台 / hc-pos</span>
|
||||
<h2>项目运营平台</h2>
|
||||
<p>已接入本地存储、Cookie、Service Worker mock 和深链静态回退。适合查看主要业务页与配置页。</p>
|
||||
<div class="link-groups">
|
||||
<section class="group">
|
||||
<div class="group-title">常用入口</div>
|
||||
<div class="actions">
|
||||
<a class="btn primary" href="/__mirror/runtime/hc-pos-dashboard/?v=20260405q#/dashboard">运行态首页</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-pos-dashboard/?v=20260405q#/propertySMG/basicManagement/basicsInfo">项目信息</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-pos-dashboard/?v=20260405q#/propertySMG/basicManagement/communityBasicsInfo">楼宇信息</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-pos-dashboard/?v=20260405q#/propertySMG/basicManagement/spatialRegion">网格划分</a>
|
||||
</div>
|
||||
</section>
|
||||
<section class="group">
|
||||
<div class="group-title">社区治理</div>
|
||||
<div class="actions">
|
||||
<a class="btn" href="/__mirror/runtime/hc-pos-dashboard/?v=20260405q#/communitySMG/party">党建活动</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-pos-dashboard/?v=20260405q#/communitySMG/personnelList">住户档案</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-pos-dashboard/?v=20260405q#/communitySMG/serviceProvider">服务商管理</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-pos-dashboard/?v=20260405q#/communitySMG/accepterManage">共建组织</a>
|
||||
</div>
|
||||
</section>
|
||||
<section class="group">
|
||||
<div class="group-title">业务配置</div>
|
||||
<div class="actions">
|
||||
<a class="btn" href="/__mirror/runtime/hc-pos-dashboard/?v=20260405q#/systemManage/projectConfig/majorSettings/paySetting">支付配置</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-pos-dashboard/?v=20260405q#/propertySMG/materialManage/inventoryManage">库存管理</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-pos-dashboard/?v=20260405q#/propertySMG/materialManage/purchaseStorage">采购入库</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-pos-dashboard/?v=20260405q#/systemManage/projectConfig/internalControl/controlSetting">驾驶舱配置</a>
|
||||
</div>
|
||||
</section>
|
||||
<section class="group">
|
||||
<div class="group-title">补充入口</div>
|
||||
<div class="actions">
|
||||
<a class="btn subtle" href="/hc-pos.sqygj.cn/dashboard/">静态快照首页</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</article>
|
||||
<article class="card">
|
||||
<span class="tag">企业服务平台 / hc-etms</span>
|
||||
<h2>企业服务平台</h2>
|
||||
<p>已接入运行态首页和高频管理页映射,企业信息、成员、组织架构、分公司管理、角色权限管理、人事档案等页都可直接进入。</p>
|
||||
<div class="link-groups">
|
||||
<section class="group">
|
||||
<div class="group-title">基础资料</div>
|
||||
<div class="actions">
|
||||
<a class="btn secondary" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q">运行态首页</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/companyMetadata/companyInfo">企业信息</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/companyMetadata/member">成员</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/companyMetadata/institution">组织架构</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/companyMetadata/organizational">企微通讯录</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/companyMetadata/branchOfficeManage">分公司管理</a>
|
||||
</div>
|
||||
</section>
|
||||
<section class="group">
|
||||
<div class="group-title">组织人事</div>
|
||||
<div class="actions">
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/systemManage/permissions">角色权限</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/personnelMerits/personnelFiles">人事档案</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/personnelMerits/recruitManage">招聘管理</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/personnelMerits/checkWorkManage">考勤管理</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/systemManage/personnelSetting">人事设置</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/systemManage/operationLog">操作日志</a>
|
||||
</div>
|
||||
</section>
|
||||
<section class="group">
|
||||
<div class="group-title">经营看板</div>
|
||||
<div class="actions">
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/companyMetadata/financeData">财务数据</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/r2cockpit/cloudData/propertyFeeReport">物业费报表</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/finance">财务看板</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/equipment">设备看板</a>
|
||||
<a class="btn" href="/__mirror/runtime/hc-etms-dashboard/?v=20260405q#/parkingLot">车场看板</a>
|
||||
</div>
|
||||
</section>
|
||||
<section class="group">
|
||||
<div class="group-title">补充入口</div>
|
||||
<div class="actions">
|
||||
<a class="btn subtle" href="/hc-etms.sqygj.cn/dashboard/__query_3cc8885b97/">静态快照首页</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</article>
|
||||
</section>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user