|
@@ -78,7 +78,47 @@ export const useRenderLayout = () => {
|
|
|
]}
|
|
|
style="transition: all var(--transition-time-02);"
|
|
|
>
|
|
|
- <ElScrollbar
|
|
|
+ {isTopologyRoute ? (<ElScrollbar
|
|
|
+ v-loading={pageLoading.value}
|
|
|
+ class={[
|
|
|
+ `${prefixCls}-content-scrollbar`,
|
|
|
+ {
|
|
|
+ '!h-[100%]':
|
|
|
+ fixedHeader.value
|
|
|
+ }
|
|
|
+ ]}
|
|
|
+ >
|
|
|
+ {isTopologyRoute ? undefined : (
|
|
|
+ <div
|
|
|
+ class={[
|
|
|
+ {
|
|
|
+ 'fixed top-0 left-0 z-10': fixedHeader.value,
|
|
|
+ 'w-[calc(100%-var(--left-menu-min-width))] !left-[var(--left-menu-min-width)]':
|
|
|
+ collapse.value && fixedHeader.value && !mobile.value,
|
|
|
+ 'w-[calc(100%-var(--left-menu-max-width))] !left-[var(--left-menu-max-width)]':
|
|
|
+ !collapse.value && fixedHeader.value && !mobile.value,
|
|
|
+ '!w-full !left-0': mobile.value
|
|
|
+ }
|
|
|
+ ]}
|
|
|
+ style="transition: all var(--transition-time-02);"
|
|
|
+ >
|
|
|
+ <ToolHeader
|
|
|
+ class={[
|
|
|
+ 'bg-[var(--top-header-bg-color)]',
|
|
|
+ {
|
|
|
+ 'layout-border__bottom': !tagsView.value
|
|
|
+ }
|
|
|
+ ]}
|
|
|
+ ></ToolHeader>
|
|
|
+
|
|
|
+ {tagsView.value ? (
|
|
|
+ <TagsView class="layout-border__top layout-border__bottom"></TagsView>
|
|
|
+ ) : undefined}
|
|
|
+ </div>
|
|
|
+ )}
|
|
|
+
|
|
|
+ <AppView></AppView>
|
|
|
+ </ElScrollbar>) : (<ElScrollbar
|
|
|
v-loading={pageLoading.value}
|
|
|
class={[
|
|
|
`${prefixCls}-content-scrollbar`,
|
|
@@ -88,7 +128,7 @@ export const useRenderLayout = () => {
|
|
|
}
|
|
|
]}
|
|
|
>
|
|
|
- {false && isTopologyRoute ? undefined : (
|
|
|
+ {isTopologyRoute ? undefined : (
|
|
|
<div
|
|
|
class={[
|
|
|
{
|
|
@@ -118,7 +158,8 @@ export const useRenderLayout = () => {
|
|
|
)}
|
|
|
|
|
|
<AppView></AppView>
|
|
|
- </ElScrollbar>
|
|
|
+ </ElScrollbar>)}
|
|
|
+
|
|
|
</div>
|
|
|
</>
|
|
|
)
|