This commit is contained in:
snltty
2025-11-02 17:48:36 +08:00
parent 18a13ce445
commit cafbf3bfa4
2 changed files with 6 additions and 7 deletions

View File

@@ -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>

View File

@@ -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