mirror of
https://github.com/snltty/linker.git
synced 2025-12-24 12:38:04 +08:00
195
This commit is contained in:
@@ -46,12 +46,11 @@
|
||||
</template>
|
||||
<template v-else>
|
||||
<template v-if="state.nodesJson[scope.row.NodeId1]">
|
||||
<template v-if="/^\d+$/.test(scope.row.Temp)">
|
||||
<span :class="{green:scope.row.Started}">{{ state.nodesJson[scope.row.NodeId1].Domain || state.nodesJson[scope.row.NodeId1].Address }}:{{ scope.row.Temp }}</span>
|
||||
</template>
|
||||
<template v-else>
|
||||
<span :class="{green:scope.row.Started}">{{ scope.row.Temp }}.{{ state.nodesJson[scope.row.NodeId1].Domain || state.nodesJson[scope.row.NodeId1].Address }}:{{state.nodesJson[scope.row.NodeId1].WebPort}}</span>
|
||||
</template>
|
||||
<span :class="{green:scope.row.Started}">
|
||||
<template v-if="/^\d+$/.test(scope.row.Temp)">{{ state.nodesJson[scope.row.NodeId1].Domain || state.nodesJson[scope.row.NodeId1].Address }}:{{ scope.row.Temp }}</template>
|
||||
<template v-else-if="scope.row.Temp.indexOf('.')>=0">{{ scope.row.Temp }}:{{state.nodesJson[scope.row.NodeId1].WebPort}}</template>
|
||||
<template v-else>{{ scope.row.Temp }}.{{ state.nodesJson[scope.row.NodeId1].Domain || state.nodesJson[scope.row.NodeId1].Address }}:{{state.nodesJson[scope.row.NodeId1].WebPort}}</template>
|
||||
</span>
|
||||
</template>
|
||||
<template v-else>
|
||||
<span>{{ scope.row.Temp }}</span>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
v1.9.5
|
||||
2025-11-02 17:39:35
|
||||
2025-11-02 17:48:36
|
||||
1. 一些累计更新,一些BUG修复
|
||||
2. 管理窗口默认置顶改为可选
|
||||
3. 增加内网穿透HTTP协议默认404页面,在web文件夹中,当存在优先404.html,其次404_default.html
|
||||
|
||||
Reference in New Issue
Block a user