From 551afe9c3fc013cbe0fcf45c4388754607e50b43 Mon Sep 17 00:00:00 2001 From: ping <1017253325@qq.com> Date: Fri, 26 Sep 2025 10:31:54 +0800 Subject: [PATCH] update --- f/web-kboss/src/router/index.js | 10 +- .../envDeployment/index.vue | 414 ++++++++++++++++++ 2 files changed, 423 insertions(+), 1 deletion(-) create mode 100644 f/web-kboss/src/views/operationAndMaintenance/envDeployment/index.vue diff --git a/f/web-kboss/src/router/index.js b/f/web-kboss/src/router/index.js index 98a685a..321f2ae 100644 --- a/f/web-kboss/src/router/index.js +++ b/f/web-kboss/src/router/index.js @@ -1624,7 +1624,15 @@ export const asyncRoutes = [ meta: { title: "产品供应", fullPath: "/operationAndMaintenance/productSupply", noCache: true }, - },], + },{ + path: "envDeployment", + component: () => import("@/views/operationAndMaintenance/envDeployment"), + name: "envDeployment", + meta: { + title: "环境部署", fullPath: "/operationAndMaintenance/envDeployment", noCache: true + }, + }, + ], }, { diff --git a/f/web-kboss/src/views/operationAndMaintenance/envDeployment/index.vue b/f/web-kboss/src/views/operationAndMaintenance/envDeployment/index.vue new file mode 100644 index 0000000..bd89352 --- /dev/null +++ b/f/web-kboss/src/views/operationAndMaintenance/envDeployment/index.vue @@ -0,0 +1,414 @@ + + + 部署管理 + + + + WebSocket连接配置 + + 服务器地址: + + + + + {{ isConnecting ? '连接中...' : (isConnected ? '已连接' : '连接') }} + + + 断开连接 + + + + + + + 部署控制 + + + 连接状态: + {{ connectionStatus }} + + + 部署状态: + {{ deployStatus }} + + + + + + + + + + + + + + + + {{ deployFailed ? '部署失败' : (isDeploying ? '部署中...' : '开始部署') }} + + + + + 部署日志 + + + {{ log }} + + + 清空日志 + + + + + + + + \ No newline at end of file