mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
修复: 解决部分页面切换动画抖动问题;
This commit is contained in:
parent
a73159aef8
commit
94096a3832
@ -76,12 +76,12 @@
|
|||||||
.page-toggle-enter-active{
|
.page-toggle-enter-active{
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
animation-duration: 0.6s !important;
|
animation-duration: 0.6s !important;
|
||||||
width: calc(100% - 48px);
|
width: calc(100%);
|
||||||
}
|
}
|
||||||
.page-toggle-leave-active{
|
.page-toggle-leave-active{
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
animation-duration: 0.6s !important;
|
animation-duration: 0.6s !important;
|
||||||
width: calc(100% - 48px);
|
width: calc(100%);
|
||||||
}
|
}
|
||||||
.page-toggle-enter{
|
.page-toggle-enter{
|
||||||
}
|
}
|
||||||
|
@ -14,12 +14,14 @@
|
|||||||
<span slot="tab" :pagekey="page.fullPath">{{page.name}}</span>
|
<span slot="tab" :pagekey="page.fullPath">{{page.name}}</span>
|
||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
</a-tabs>
|
</a-tabs>
|
||||||
<page-toggle-transition :animate="animate.name" :direction="animate.direction">
|
<div class="menu-view-content">
|
||||||
<keep-alive v-if="multiPage">
|
<page-toggle-transition :animate="animate.name" :direction="animate.direction">
|
||||||
<router-view />
|
<keep-alive v-if="multiPage">
|
||||||
</keep-alive>
|
<router-view />
|
||||||
<router-view v-else />
|
</keep-alive>
|
||||||
</page-toggle-transition>
|
<router-view v-else />
|
||||||
|
</page-toggle-transition>
|
||||||
|
</div>
|
||||||
</global-layout>
|
</global-layout>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -160,8 +162,7 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="less">
|
<style scoped lang="less">
|
||||||
.menu-view{
|
.menu-view-content{
|
||||||
.menu-view-content{
|
position: relative;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -67,7 +67,7 @@ export default {
|
|||||||
}
|
}
|
||||||
.page-content{
|
.page-content{
|
||||||
position: relative;
|
position: relative;
|
||||||
padding: 24px 24px 0;
|
padding: 24px 0 0;
|
||||||
&.side{
|
&.side{
|
||||||
}
|
}
|
||||||
&.head{
|
&.head{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user