- 在 ClientAccount 实体中新增 splashImage 字段用于存储开屏图片URL - 在 ClientAccountController 中添加上传、获取和删除开屏图片的接口 - 集成七牛云存储实现图片上传功能,支持图片格式和大小校验 - 使用 Redis 缓存开屏图片URL,提升访问性能 - 在客户端登录成功后异步加载并保存开屏图片配置 - 新增 splashApi 模块封装开屏图片相关HTTP请求- 在主进程中实现开屏图片配置的持久化存储和读取 - 在设置页面中增加开屏图片管理界面,支持上传、预览和删除操作 - 修改 splash.html 支持动态加载自定义开屏图片 - 调整 CSP 策略允许加载本地和HTTPS图片资源
34 lines
1.4 KiB
HTML
34 lines
1.4 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>
|
|
html, body { height: 100%; margin: 0; }
|
|
body {
|
|
background: #fff; font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
|
|
background-image: var(--splash-image, url('./image/splash_screen.png'));
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: cover;
|
|
}
|
|
.box { position: fixed; left: 0; right: 0; bottom: 28px; padding: 0 0; }
|
|
.progress { position: relative; width: 100vw; height: 6px; background: rgba(0,0,0,0.08); }
|
|
.bar { position: absolute; left: 0; top: 0; height: 100%; width: 20vw; min-width: 120px; background: linear-gradient(90deg, #67C23A, #409EFF); animation: slide 1s ease-in-out infinite alternate; }
|
|
@keyframes slide { 0% { left: 0; } 100% { left: calc(100vw - 20vw); } }
|
|
</style>
|
|
<link rel="icon" href="icon/icon.png">
|
|
<link rel="apple-touch-icon" href="icon/icon.png">
|
|
<meta name="theme-color" content="#ffffff">
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; img-src 'self' data: file: https:; style-src 'self' 'unsafe-inline';">
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<div class="progress"><div class="bar"></div></div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|
|
|