win10+msquic

This commit is contained in:
snltty
2024-06-04 16:58:34 +08:00
parent 59127342e3
commit 568cf7db0e
2 changed files with 7 additions and 4 deletions

View File

@@ -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(() => {

View File

@@ -17,7 +17,7 @@ namespace cmonitor.plugins.tunnel.transport
{
public string Name => "msquic";
public string Label => "UDP over MsQuicwin11+、linux";
public string Label => "UDP over MsQuicwin10+、linux";
public TunnelProtocolType ProtocolType => TunnelProtocolType.Quic;