perf: 站点监控域名气泡增加端口显示

This commit is contained in:
xiaojunnuo
2026-04-11 21:02:31 +08:00
parent 557e98c33f
commit 6ee718a252

View File

@@ -346,12 +346,13 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat
width: 230,
sorter: true,
cellRender({ value, row }) {
const url = `https://${value}:${row.httpsPort}`;
const domainPort = value + ":" + row.httpsPort;
const url = `https://${domainPort}`;
return (
<a-tooltip title={value} placement="left">
<fs-copyable modelValue={value}>
<a-tooltip title={domainPort} placement="left">
<fs-copyable modelValue={domainPort} title={domainPort}>
<a target="_blank" href={url}>
{value}:{row.httpsPort}
{domainPort}
</a>
</fs-copyable>
</a-tooltip>