feat(steady): 实现稳态校验任务功能重构
- 添加influxdb配置支持和资源文件打包 - 实现校验任务表格组件和相关工具函数 - 重构校验工作台为任务创建对话框模式 - 实现校验详情面板支持多种异常类型展示 - 更新校验概览表格显示任务基本信息 - 优化校验查询参数和API接口定义 - 实现搜索表单组件化和过滤功能增强
This commit is contained in:
@@ -10,12 +10,14 @@ class StartupManager {
|
||||
this.loadingWindow = null;
|
||||
this.steps = [
|
||||
{ id: 'init', label: '正在初始化应用...', progress: 0 },
|
||||
{ id: 'check-mysql-port', label: '正在检查MySQL服务...', progress: 20 },
|
||||
{ id: 'wait-mysql', label: '确保MySQL服务运行...', progress: 40 },
|
||||
{ id: 'check-java-port', label: '正在检测后端服务端口...', progress: 60 },
|
||||
{ id: 'generate-config', label: '正在生成配置文件...', progress: 70 },
|
||||
{ id: 'start-java', label: '正在启动后端服务...', progress: 80 },
|
||||
{ id: 'wait-java', label: '等待后端服务就绪...', progress: 90 },
|
||||
{ id: 'check-mysql-port', label: '正在检查MySQL服务...', progress: 15 },
|
||||
{ id: 'wait-mysql', label: '确保MySQL服务运行...', progress: 30 },
|
||||
{ id: 'check-influxdb-port', label: '正在检查InfluxDB服务...', progress: 45 },
|
||||
{ id: 'wait-influxdb', label: '确保InfluxDB服务运行...', progress: 55 },
|
||||
{ id: 'check-java-port', label: '正在检测后端服务端口...', progress: 65 },
|
||||
{ id: 'generate-config', label: '正在生成配置文件...', progress: 75 },
|
||||
{ id: 'start-java', label: '正在启动后端服务...', progress: 85 },
|
||||
{ id: 'wait-java', label: '等待后端服务就绪...', progress: 95 },
|
||||
{ id: 'done', label: '启动完成!', progress: 100 }
|
||||
];
|
||||
this.currentStep = 0;
|
||||
|
||||
Reference in New Issue
Block a user