核心变更: 1. 新增页面模块 - 快捷评语管理 (quick-comment) - 报告模板管理 (report-template) - 评估报告编辑 (report) - 风险分析页面 (risk) - 预警管理 (warning) - 服刑情况跟踪 (situation) 2. 功能优化 - 罪犯管理: 新增Workbench工作台页面 - 问卷模块: 完善QuestionForm组件 - 计分考核: 优化ScoreForm支持多种评分方式 - 危险评估: 完善RiskAssessmentForm 3. UI改进 - 登录页面: 新增监狱特色Loading动画 - 罪犯详情: 优化展示效果 - 消费记录: 增强查询功能 4. 基础设施 - 新增JusticeIcon图标组件 - 优化字典格式化工具 - 更新路由配置 Co-Authored-By: Claude <noreply@anthropic.com>
186 lines
5.9 KiB
HTML
186 lines
5.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta
|
|
name="keywords"
|
|
content="芋道管理系统 基于 vue3 + CompositionAPI + typescript + vite3 + element plus 的后台开源免费管理系统!"
|
|
/>
|
|
<meta
|
|
name="description"
|
|
content="芋道管理系统 基于 vue3 + CompositionAPI + typescript + vite3 + element plus 的后台开源免费管理系统!"
|
|
/>
|
|
<title>%VITE_APP_TITLE%</title>
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<style>
|
|
.app-loading {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
background: linear-gradient(135deg, #1a365d 0%, #2d3748 50%, #1a365d 100%);
|
|
}
|
|
|
|
.app-loading .app-loading-wrap {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
display: flex;
|
|
-webkit-transform: translate3d(-50%, -50%, 0);
|
|
transform: translate3d(-50%, -50%, 0);
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.app-loading .app-loading-title {
|
|
margin-bottom: 20px;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
color: #f6e05e;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.app-loading .app-loading-logo {
|
|
width: 64px;
|
|
height: 64px;
|
|
margin: 0 auto 10px auto;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.app-loading .app-loading-item {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 60px;
|
|
height: 60px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/* 书本+天平图标 */
|
|
.app-loading .app-loading-shield {
|
|
width: 80px;
|
|
height: 80px;
|
|
animation: bookFloat 2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes bookFloat {
|
|
0%, 100% {
|
|
transform: translateY(0);
|
|
}
|
|
50% {
|
|
transform: translateY(-8px);
|
|
}
|
|
}
|
|
|
|
/* 旋转光环 */
|
|
.app-loading .app-loading-ring {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 100px;
|
|
height: 100px;
|
|
border: 3px solid transparent;
|
|
border-top-color: #ffd700;
|
|
border-radius: 50%;
|
|
transform: translate(-50%, -50%);
|
|
animation: rotateRing 2s linear infinite;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
@keyframes rotateRing {
|
|
from {
|
|
transform: translate(-50%, -50%) rotate(0deg);
|
|
}
|
|
to {
|
|
transform: translate(-50%, -50%) rotate(360deg);
|
|
}
|
|
}
|
|
|
|
/* 进度条 */
|
|
.app-loading .app-loading-progress {
|
|
width: 200px;
|
|
height: 4px;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 2px;
|
|
margin-top: 30px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.app-loading .app-loading-progress-bar {
|
|
height: 100%;
|
|
width: 30%;
|
|
background: linear-gradient(90deg, #daa520, #ffd700, #daa520);
|
|
border-radius: 2px;
|
|
animation: progressMove 1.5s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes progressMove {
|
|
0% {
|
|
width: 10%;
|
|
margin-left: 0;
|
|
}
|
|
50% {
|
|
width: 50%;
|
|
margin-left: 25%;
|
|
}
|
|
100% {
|
|
width: 10%;
|
|
margin-left: 90%;
|
|
}
|
|
}
|
|
|
|
/* 加载文字 */
|
|
.app-loading .app-loading-text {
|
|
margin-top: 15px;
|
|
font-size: 14px;
|
|
color: #a0aec0;
|
|
letter-spacing: 2px;
|
|
}
|
|
</style>
|
|
<div class="app-loading">
|
|
<div class="app-loading-wrap">
|
|
<div class="app-loading-title">%VITE_APP_TITLE%</div>
|
|
<!-- 书本+天平图标 -->
|
|
<div class="app-loading-item">
|
|
<svg class="app-loading-shield" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
<!-- 天平底座 -->
|
|
<rect x="35" y="75" width="30" height="6" rx="2" fill="#c41e3a" />
|
|
<rect x="48" y="45" width="4" height="30" fill="#ffd700" />
|
|
<!-- 天平横杆 -->
|
|
<rect x="10" y="42" width="80" height="5" rx="2" fill="#ffd700" />
|
|
<!-- 天平左边盘子(往中间移) -->
|
|
<path d="M28 47 L38 47 L35 58 L31 58 Z" fill="#ffd700" />
|
|
<path d="M25 58 Q33 65 41 58" fill="none" stroke="#ffd700" stroke-width="2" />
|
|
<!-- 天平右边盘子 -->
|
|
<path d="M62 47 L72 47 L69 58 L65 58 Z" fill="#ffd700" />
|
|
<path d="M59 58 Q67 65 75 58" fill="none" stroke="#ffd700" stroke-width="2" />
|
|
<!-- 天平顶装饰 -->
|
|
<circle cx="50" cy="38" r="5" fill="#c41e3a" />
|
|
<polygon points="50,30 52,36 58,36 53,40 55,46 50,42 45,46 47,40 42,36 48,36" fill="#ffd700" />
|
|
<!-- 书本(放在天平左侧) -->
|
|
<rect x="8" y="48" width="10" height="22" rx="1" fill="#c41e3a" stroke="#ffd700" stroke-width="1.5" />
|
|
<line x1="13" y1="52" x2="13" y2="68" stroke="#ffd700" stroke-width="0.5" />
|
|
<line x1="9" y1="56" x2="17" y2="56" stroke="#ffd700" stroke-width="0.5" />
|
|
<line x1="9" y1="62" x2="17" y2="62" stroke="#ffd700" stroke-width="0.5" />
|
|
</svg>
|
|
<div class="app-loading-ring"></div>
|
|
</div>
|
|
<div class="app-loading-progress">
|
|
<div class="app-loading-progress-bar"></div>
|
|
</div>
|
|
<div class="app-loading-text">正在加载系统中...</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|