mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-25 11:06:36 +08:00
fix: plugin-layout去掉使用<style vars>
This commit is contained in:
parent
8048b30036
commit
34927b0f51
@ -8,7 +8,7 @@
|
|||||||
class="main-layout"
|
class="main-layout"
|
||||||
>
|
>
|
||||||
<template v-if="navigation !== 'top'">
|
<template v-if="navigation !== 'top'">
|
||||||
<div v-if="fixedSideBar" class="layout-sider-fixed-stuff"></div>
|
<div v-if="fixedSideBar" :style="siderFixedStuffStyle" class="layout-sider-fixed-stuff"></div>
|
||||||
<a-layout-sider
|
<a-layout-sider
|
||||||
v-model:collapsed="collapsed"
|
v-model:collapsed="collapsed"
|
||||||
:width="sideWidth"
|
:width="sideWidth"
|
||||||
@ -30,6 +30,7 @@
|
|||||||
<a-layout-header v-if="currentFixedHeader" class="layout-header">
|
<a-layout-header v-if="currentFixedHeader" class="layout-header">
|
||||||
</a-layout-header>
|
</a-layout-header>
|
||||||
<a-layout-header
|
<a-layout-header
|
||||||
|
:style="headerFixedStyle"
|
||||||
:class="[currentFixedHeader ? 'layout-header-fixed' : '']"
|
:class="[currentFixedHeader ? 'layout-header-fixed' : '']"
|
||||||
class="layout-header"
|
class="layout-header"
|
||||||
>
|
>
|
||||||
@ -129,6 +130,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
setup(props) {
|
setup(props) {
|
||||||
|
const collapsed = ref(false);
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const routeHasLayout = computed(() => {
|
const routeHasLayout = computed(() => {
|
||||||
const _routeLayout = route.meta.layout;
|
const _routeLayout = route.meta.layout;
|
||||||
@ -141,12 +143,39 @@ export default {
|
|||||||
return props.theme;
|
return props.theme;
|
||||||
});
|
});
|
||||||
const currentFixedHeader = computed(() => props.fixedHeader || props.navigation === 'mixin');
|
const currentFixedHeader = computed(() => props.fixedHeader || props.navigation === 'mixin');
|
||||||
|
const siderFixedStuffStyle = computed(() => {
|
||||||
|
if (collapsed.value) {
|
||||||
|
return {
|
||||||
|
width: '80px'
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
width: `${props.sideWidth}px`
|
||||||
|
};
|
||||||
|
});
|
||||||
|
const headerFixedStyle = computed(() => {
|
||||||
|
if (!currentFixedHeader.value) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
if (props.navigation === 'side') {
|
||||||
|
return {
|
||||||
|
left: `${props.sideWidth}px`,
|
||||||
|
width: `calc(100% - ${props.sideWidth}px)`
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
left: 0,
|
||||||
|
width: '100%'
|
||||||
|
};
|
||||||
|
});
|
||||||
return {
|
return {
|
||||||
siderTheme,
|
siderTheme,
|
||||||
currentFixedHeader,
|
currentFixedHeader,
|
||||||
route,
|
route,
|
||||||
routeHasLayout,
|
routeHasLayout,
|
||||||
collapsed: ref(false)
|
collapsed,
|
||||||
|
siderFixedStuffStyle,
|
||||||
|
headerFixedStyle
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -164,10 +193,6 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.layout-sider-fixed-stuff {
|
|
||||||
overflow: hidden;
|
|
||||||
width: 80px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
&.main-layout-navigation-top {
|
&.main-layout-navigation-top {
|
||||||
.layout-header {
|
.layout-header {
|
||||||
@ -198,10 +223,6 @@ export default {
|
|||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.layout-header-fixed {
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.main-layout-navigation-mixin {
|
&.main-layout-navigation-mixin {
|
||||||
@ -240,15 +261,10 @@ export default {
|
|||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.layout-header-fixed {
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.layout-sider-fixed-stuff {
|
.layout-sider-fixed-stuff {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
width: var(--sideWidth);
|
|
||||||
transition: width 0.2s;
|
transition: width 0.2s;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
@ -299,10 +315,8 @@ export default {
|
|||||||
&.layout-header-fixed {
|
&.layout-header-fixed {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: var(--sideWidth);
|
|
||||||
right: 0;
|
right: 0;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
width: calc(100% - var(--sideWidth));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.layout-content {
|
.layout-content {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user