no message

This commit is contained in:
hawk86104 2025-03-10 15:58:54 +08:00
parent 9b74a7c789
commit 3f8f47c127
2 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<template> <template>
<div v-if="hasPreview"> <div v-if="hasPreview">
<FTooltip mode="popover" :offset="-208"> <FTooltip mode="popover" :offset="-208" placement="bottom" :getContainer="getContainer">
<FImage class="w-full max-h-70 h-14em" style="cursor: pointer" fit="contain" :src="publicPath + onePreview.src" lazy /> <FImage class="w-full max-h-70 h-14em" style="cursor: pointer" fit="contain" :src="publicPath + onePreview.src" lazy />
<template #content> <template #content>
<div style="width: 280px; height: 180px; display: flex; justify-content: center; align-items: center"> <div style="width: 280px; height: 180px; display: flex; justify-content: center; align-items: center">
@ -111,6 +111,11 @@ const errMiNiImg = (e: any) => {
}) })
}) })
} }
const getContainer = (container: any) => {
debugger
return document.querySelector('#right-page-list-id')
}
</script> </script>
<style lang="less"> <style lang="less">
.fes-tooltip-confirm, .fes-tooltip-confirm,

View File

@ -123,6 +123,7 @@
</FMenu> </FMenu>
</div> </div>
<div <div
id="right-page-list-id"
class="overflow-scroll relative right-page-list" class="overflow-scroll relative right-page-list"
:class="{ 'mt-10': detectDeviceType() === 'PC' }" :class="{ 'mt-10': detectDeviceType() === 'PC' }"
style="height: calc(100vh - 42px - 52px); width: 100%" style="height: calc(100vh - 42px - 52px); width: 100%"