diff --git a/cmonitor.web.client/src/views/devices/List.vue b/cmonitor.web.client/src/views/devices/List.vue index 7851ee2f..2a851155 100644 --- a/cmonitor.web.client/src/views/devices/List.vue +++ b/cmonitor.web.client/src/views/devices/List.vue @@ -221,7 +221,7 @@ export default { res.List[j].showDel = machineName.value != res.List[j].MachineName && res.List[j].Connected == false; res.List[j].isSelf = machineName.value == res.List[j].MachineName; } - state.page.List = res.List; + state.page.List = res.List.sort((a,b)=>a.Connected - b.Connected); }).catch((err) => { }); } const _getSignList1 = () => { @@ -260,8 +260,11 @@ export default { refreshTuntap(); ElMessage.success('刷新成功'); } - const handlePageChange = () => { - _getSignList(); + const handlePageChange = (page) => { + if(page){ + state.page.Request.Page = page; + _getSignList(); + } } const handleDel = (name) => { signInDel(name).then(() => { diff --git a/cmonitor/plugins/tunnel/transport/TransportMsQuic.cs b/cmonitor/plugins/tunnel/transport/TransportMsQuic.cs index 75400287..6792841d 100644 --- a/cmonitor/plugins/tunnel/transport/TransportMsQuic.cs +++ b/cmonitor/plugins/tunnel/transport/TransportMsQuic.cs @@ -17,7 +17,7 @@ namespace cmonitor.plugins.tunnel.transport { public string Name => "msquic"; - public string Label => "UDP over MsQuic,win11+、linux"; + public string Label => "UDP over MsQuic,win10+、linux"; public TunnelProtocolType ProtocolType => TunnelProtocolType.Quic;