Files
pqs-9100_client/public/html/loading.html

216 lines
5.1 KiB
HTML
Raw Normal View History

2024-08-07 21:49:03 +08:00
<!DOCTYPE html>
<html lang="zh-CN">
2025-10-16 20:14:55 +08:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-11-26 08:50:22 +08:00
<title>NPQS-9100自动检测平台 正在启动...</title>
2025-10-16 20:14:55 +08:00
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Microsoft YaHei', Arial, sans-serif;
background: transparent;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.loading-container {
width: 480px;
padding: 40px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
text-align: center;
color: white;
}
.logo {
font-size: 32px;
font-weight: bold;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.subtitle {
font-size: 14px;
opacity: 0.9;
margin-bottom: 30px;
}
.status-text {
font-size: 16px;
margin-bottom: 20px;
min-height: 24px;
font-weight: 500;
}
.progress-bar-container {
width: 100%;
height: 8px;
background: rgba(255, 255, 255, 0.3);
border-radius: 4px;
overflow: hidden;
margin-bottom: 15px;
}
.progress-bar {
height: 100%;
background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 100%);
border-radius: 4px;
transition: width 0.3s ease;
width: 0%;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.progress-percent {
font-size: 14px;
opacity: 0.8;
}
.spinner {
display: inline-block;
width: 40px;
height: 40px;
margin-top: 10px;
}
.spinner div {
box-sizing: border-box;
display: block;
position: absolute;
width: 32px;
height: 32px;
margin: 4px;
border: 3px solid #fff;
border-radius: 50%;
animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
border-color: #fff transparent transparent transparent;
}
.spinner div:nth-child(1) {
animation-delay: -0.45s;
}
.spinner div:nth-child(2) {
animation-delay: -0.3s;
}
.spinner div:nth-child(3) {
animation-delay: -0.15s;
}
@keyframes spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.error-container {
display: none;
margin-top: 20px;
padding: 15px;
background: rgba(255, 0, 0, 0.2);
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.3);
}
.error-container.show {
display: block;
}
.error-title {
font-size: 16px;
font-weight: bold;
margin-bottom: 8px;
}
.error-message {
font-size: 14px;
opacity: 0.9;
}
.extra-info {
font-size: 12px;
opacity: 0.7;
margin-top: 15px;
font-style: italic;
}
</style>
</head>
<body>
<div class="loading-container">
2025-11-26 08:50:22 +08:00
<div class="logo">NPQS-9100自动检测平台</div>
<div class="subtitle">南京灿能电力自动化股份有限公司</div>
2025-10-16 20:14:55 +08:00
<div class="status-text" id="statusText">正在初始化应用...</div>
<div class="progress-bar-container">
<div class="progress-bar" id="progressBar"></div>
</div>
<div class="progress-percent" id="progressPercent">0%</div>
<div class="spinner">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div class="error-container" id="errorContainer">
<div class="error-title">启动失败</div>
<div class="error-message" id="errorMessage"></div>
</div>
<div class="extra-info" id="extraInfo"></div>
</div>
<script>
const { ipcRenderer } = require('electron');
const statusText = document.getElementById('statusText');
const progressBar = document.getElementById('progressBar');
const progressPercent = document.getElementById('progressPercent');
const errorContainer = document.getElementById('errorContainer');
const errorMessage = document.getElementById('errorMessage');
const extraInfo = document.getElementById('extraInfo');
// 监听启动进度
ipcRenderer.on('startup-progress', (event, data) => {
statusText.textContent = data.label;
progressBar.style.width = data.progress + '%';
progressPercent.textContent = data.progress + '%';
// 显示额外信息
let info = '';
if (data.mysqlPort) {
info += `MySQL 端口: ${data.mysqlPort} `;
2024-08-07 21:49:03 +08:00
}
2025-10-16 20:14:55 +08:00
if (data.javaPort) {
info += `后端端口: ${data.javaPort} `;
2024-08-07 21:49:03 +08:00
}
2025-10-16 20:14:55 +08:00
if (data.dataPath) {
info += `数据目录: ${data.dataPath}`;
2024-08-07 21:49:03 +08:00
}
2025-10-16 20:14:55 +08:00
if (info) {
extraInfo.textContent = info;
2024-08-07 21:49:03 +08:00
}
2025-10-16 20:14:55 +08:00
});
// 监听启动错误
ipcRenderer.on('startup-error', (event, data) => {
errorMessage.textContent = data.error;
errorContainer.classList.add('show');
progressBar.style.background = 'linear-gradient(90deg, #ff6b6b 0%, #ee5a6f 100%)';
});
</script>
</body>
2024-08-07 21:49:03 +08:00
</html>