mirror of
https://github.com/snltty/linker.git
synced 2025-12-24 12:38:04 +08:00
win10+msquic
This commit is contained in:
@@ -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(() => {
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user