perf(仪表板): 优化分享链接

This commit is contained in:
fit2cloud-chenyw
2024-12-30 14:19:57 +08:00
committed by ulleo
parent d58273636d
commit 4e4e64511c
3 changed files with 7 additions and 3 deletions

View File

@@ -391,7 +391,9 @@ const loadShareInfo = cb => {
.get({ url })
.then(res => {
state.detailInfo = { ...res.data }
originUuid.value = res.data.uuid
if (res.data?.uuid) {
originUuid.value = res.data.uuid
}
setPageInfo()
})
.finally(() => {

View File

@@ -372,7 +372,9 @@ const loadShareInfo = cb => {
.get({ url })
.then(res => {
state.detailInfo = { ...res.data }
originUuid.value = res.data.uuid
if (res.data?.uuid) {
originUuid.value = res.data.uuid
}
setPageInfo()
})
.finally(() => {