fix(ui): stabilize authenticated page requests

This commit is contained in:
jxxghp
2026-08-13 07:20:49 +08:00
parent 0ea12f75f7
commit 2b0325e02b
13 changed files with 75 additions and 27 deletions
+12 -4
View File
@@ -1519,13 +1519,17 @@ onUnmounted(() => {
<template #item.src="{ item }">
<div>
<span>
<VChip variant="tonal" size="small" label class="my-1"> {{ storageDict[item?.src_storage || ''] }}</VChip>
<VChip variant="tonal" size="small" label class="my-1">
{{ getHistoryStorageName(item?.src_storage) }}
</VChip>
<small>{{ item?.src }}</small>
</span>
<span class="text-high-emphasis text-bold"> => </span>
<br />
<span v-if="item?.dest">
<VChip variant="tonal" size="small" label class="my-1"> {{ storageDict[item?.dest_storage || ''] }}</VChip>
<VChip variant="tonal" size="small" label class="my-1">
{{ getHistoryStorageName(item?.dest_storage) }}
</VChip>
<small>{{ item?.dest }}</small>
</span>
</div>
@@ -1621,13 +1625,17 @@ onUnmounted(() => {
<template #item.src="{ item }">
<div>
<span>
<VChip variant="tonal" size="small" label class="my-1"> {{ storageDict[item?.src_storage || ''] }}</VChip>
<VChip variant="tonal" size="small" label class="my-1">
{{ getHistoryStorageName(item?.src_storage) }}
</VChip>
<small>{{ item?.src }}</small>
</span>
<span class="text-high-emphasis text-bold"> => </span>
<br />
<span v-if="item?.dest">
<VChip variant="tonal" size="small" label class="my-1"> {{ storageDict[item?.dest_storage || ''] }}</VChip>
<VChip variant="tonal" size="small" label class="my-1">
{{ getHistoryStorageName(item?.dest_storage) }}
</VChip>
<small>{{ item?.dest }}</small>
</span>
</div>