mirror of
https://gitcode.com/JianFeeeee/webui4frpc.git
synced 2026-09-22 01:47:58 +00:00
- process: spawn 不再重复起 supervise goroutine(Restart 触发旧 supervise close doneCh 后再 close → panic);新增 closeOnce/supervising 守卫;Start 首次起 supervise,重启循环在同一 goroutine 内 - httpapi: status 增加 connState(connected/connecting/failed/not_started/disabled),由 worker 日志探测真实 frps 连接(不再把本地 worker 状态误当远程 frps 状态) - StatusView: 远程卡片主状态改为连接状态徽标;启停按钮标注为控制本地 frpc worker;本地转发区保留 worker 状态显示 - 新增 ClusterView 集群页骨架(M3 LB+健康检查载体)+ App.vue 导航接入 - render: bandwidthLimit 从 proxy 顶层移入 transport 段(frpc 0.61 正确 schema,修复真实连不上的 bug)
46 lines
981 B
Vue
46 lines
981 B
Vue
<template>
|
||
<div class="cluster-page">
|
||
<div class="cluster-top">
|
||
<h2 class="page-title">集群</h2>
|
||
<span class="page-sub">
|
||
负载均衡组(group)与健康检查(health check)将在这里展示 — M3 功能,占位
|
||
</span>
|
||
</div>
|
||
<div class="cluster-body">
|
||
<el-empty description="集群功能开发中(M3:负载均衡与健康检查)" />
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
// M3 集群页骨架:group / groupKey 多后端负载均衡 + 健康检查(tcp/http)将在此呈现。
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.cluster-page {
|
||
height: 100%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
padding: 20px;
|
||
overflow-y: auto;
|
||
}
|
||
.cluster-top {
|
||
display: flex;
|
||
align-items: baseline;
|
||
gap: 12px;
|
||
margin-bottom: 16px;
|
||
}
|
||
.page-title {
|
||
margin: 0;
|
||
font-size: 18px;
|
||
font-weight: 600;
|
||
}
|
||
.page-sub {
|
||
color: $color-text-muted;
|
||
font-size: 13px;
|
||
}
|
||
.cluster-body {
|
||
flex: 1;
|
||
}
|
||
</style>
|