mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-05 19:41:37 +08:00
fix: style problem of dropdown components in Setting.vue; 🐛 #105
修复:设置面板里下拉组件的样式问题;
This commit is contained in:
parent
f777920f89
commit
de925b254e
@ -32,7 +32,7 @@
|
||||
<a-list :split="false">
|
||||
<a-list-item>
|
||||
{{$t('navigate.content.title')}}
|
||||
<a-select size="small" defaultValue="1" slot="actions" style="width: 80px">
|
||||
<a-select :getPopupContainer="getPopupContainer" :dropdown-style="{zIndex: 2001}" size="small" defaultValue="1" slot="actions" style="width: 80px">
|
||||
<a-select-option value="1">{{$t('navigate.content.fluid')}}</a-select-option>
|
||||
<a-select-option value="2">{{$t('navigate.content.fixed')}}</a-select-option>
|
||||
</a-select>
|
||||
@ -75,6 +75,8 @@
|
||||
{{$t('animate.effect')}}
|
||||
<a-select
|
||||
:value="animate.name"
|
||||
:getPopupContainer="getPopupContainer"
|
||||
:dropdown-style="{zIndex: 2001}"
|
||||
@change="val => setAnimate({...animate, name: val})"
|
||||
class="select-item" size="small" slot="actions"
|
||||
>
|
||||
@ -85,6 +87,8 @@
|
||||
{{$t('animate.direction')}}
|
||||
<a-select
|
||||
:value="animate.direction"
|
||||
:getPopupContainer="getPopupContainer"
|
||||
:dropdown-style="{zIndex: 2001}"
|
||||
@change="val => setAnimate({...animate, direction: val})"
|
||||
class="select-item" size="small" slot="actions"
|
||||
>
|
||||
@ -135,6 +139,9 @@ export default {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getPopupContainer() {
|
||||
return this.$el.parentNode
|
||||
},
|
||||
copyCode () {
|
||||
let config = {}
|
||||
// 提取配置
|
||||
|
@ -82,6 +82,7 @@ export default {
|
||||
.side-menu{
|
||||
&.fixed-side{
|
||||
position: fixed;
|
||||
height: 100vh;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user