mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
fix: the problem that the notification window does not open properly; 🐛 #79
修复:通知窗口不能正常打开问题;
This commit is contained in:
parent
75921a02ae
commit
ff4364262d
@ -48,7 +48,7 @@ export default {
|
|||||||
return {
|
return {
|
||||||
langList: [
|
langList: [
|
||||||
{key: 'CN', name: '简体中文', alias: '简体'},
|
{key: 'CN', name: '简体中文', alias: '简体'},
|
||||||
{key: 'HK', name: '繁体中文', alias: '繁体'},
|
{key: 'HK', name: '繁體中文', alias: '繁體'},
|
||||||
{key: 'US', name: 'English', alias: 'English'}
|
{key: 'US', name: 'English', alias: 'English'}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<a-dropdown :trigger="['click']">
|
<a-dropdown :trigger="['click']" v-model="show">
|
||||||
<div slot="overlay">
|
<div slot="overlay">
|
||||||
<a-spin :spinning="loading">
|
<a-spin :spinning="loading">
|
||||||
<a-tabs :tabBarStyle="{textAlign: 'center'}" :style="{backgroundColor: 'white', width: '297px'}">
|
<a-tabs class="dropdown-tabs" :tabBarStyle="{textAlign: 'center'}" :style="{backgroundColor: 'white', width: '297px'}">
|
||||||
<a-tab-pane tab="通知" key="1" :style="{padding: '0 24px'}">
|
<a-tab-pane tab="通知" key="1">
|
||||||
<a-list>
|
<a-list class="tab-pane">
|
||||||
<a-list-item>
|
<a-list-item>
|
||||||
<a-list-item-meta title="你收到了 14 份新周报" description="一年前">
|
<a-list-item-meta title="你收到了 14 份新周报" description="一年前">
|
||||||
<a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png"/>
|
<a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/ThXAXghbEsBCCSDihZxY.png"/>
|
||||||
@ -23,10 +23,10 @@
|
|||||||
</a-list>
|
</a-list>
|
||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
<a-tab-pane tab="消息" key="2">
|
<a-tab-pane tab="消息" key="2">
|
||||||
暂无消息
|
<div class="tab-pane">暂无消息</div>
|
||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
<a-tab-pane tab="待办" key="3">
|
<a-tab-pane tab="待办" key="3">
|
||||||
暂无待办
|
<div class="tab-pane">暂无消息</div>
|
||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
</a-tabs>
|
</a-tabs>
|
||||||
</a-spin>
|
</a-spin>
|
||||||
@ -44,7 +44,8 @@ export default {
|
|||||||
name: 'HeaderNotice',
|
name: 'HeaderNotice',
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
loading: false
|
loading: false,
|
||||||
|
show: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -76,7 +77,12 @@ export default {
|
|||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.ant-dropdown-menu-container{
|
.dropdown-tabs{
|
||||||
box-shadow: 0 2px 8px rgba(0,0,0,.15);
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
||||||
|
border-radius: 4px;
|
||||||
|
.tab-pane{
|
||||||
|
padding: 0 24px 12px;
|
||||||
|
min-height: 250px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user