mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
fix: the setting of fixed width do not effect in some page; 🐛
修复:部分页面固定宽度设置不生效的bug;
This commit is contained in:
parent
a19e8a226f
commit
d14d1ee9b8
@ -135,6 +135,7 @@ export default {
|
||||
}
|
||||
.admin-layout-content{
|
||||
padding: 24px 24px 0;
|
||||
overflow-x: hidden;
|
||||
min-height: calc(100vh - 64px - 122px);
|
||||
}
|
||||
.setting{
|
||||
|
@ -15,7 +15,7 @@
|
||||
<span slot="tab" :pagekey="page.fullPath">{{pageName(page)}}</span>
|
||||
</a-tab-pane>
|
||||
</a-tabs>
|
||||
<div class="tabs-view-content" :style="`margin-top: ${multiPage ? -24 : 0}px`">
|
||||
<div :class="['tabs-view-content', layout, pageWidth]" :style="`margin-top: ${multiPage ? -24 : 0}px`">
|
||||
<page-toggle-transition :disabled="animate.disabled" :animate="animate.name" :direction="animate.direction">
|
||||
<a-keep-alive v-if="multiPage" v-model="clearCaches">
|
||||
<router-view ref="tabContent" :key="$route.fullPath" />
|
||||
@ -214,5 +214,9 @@ function getPageKey (target, depth = 0) {
|
||||
}
|
||||
.tabs-view-content{
|
||||
position: relative;
|
||||
&.head.fixed{
|
||||
width: 1400px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
Loading…
x
Reference in New Issue
Block a user