mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
89 lines
2.6 KiB
Vue
89 lines
2.6 KiB
Vue
<template>
|
|
<a-dropdown :trigger="['click']" v-model="show">
|
|
<div slot="overlay">
|
|
<a-spin :spinning="loading">
|
|
<a-tabs class="dropdown-tabs" :tabBarStyle="{textAlign: 'center'}" :style="{backgroundColor: 'white', width: '297px'}">
|
|
<a-tab-pane tab="通知" key="1">
|
|
<a-list class="tab-pane">
|
|
<a-list-item>
|
|
<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-list-item-meta>
|
|
</a-list-item>
|
|
<a-list-item>
|
|
<a-list-item-meta title="你推荐的 曲妮妮 已通过第三轮面试" description="一年前">
|
|
<a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/OKJXDXrmkNshAMvwtvhu.png"/>
|
|
</a-list-item-meta>
|
|
</a-list-item>
|
|
<a-list-item>
|
|
<a-list-item-meta title="这种模板可以区分多种通知类型" description="一年前">
|
|
<a-avatar style="background-color: white" slot="avatar" src="https://gw.alipayobjects.com/zos/rmsportal/kISTdvpyTAhtGxpovNWd.png"/>
|
|
</a-list-item-meta>
|
|
</a-list-item>
|
|
</a-list>
|
|
</a-tab-pane>
|
|
<a-tab-pane tab="消息" key="2">
|
|
<a-list class="tab-pane"></a-list>
|
|
</a-tab-pane>
|
|
<a-tab-pane tab="待办" key="3">
|
|
<a-list class="tab-pane"></a-list>
|
|
</a-tab-pane>
|
|
</a-tabs>
|
|
</a-spin>
|
|
</div>
|
|
<span @click="fetchNotice" class="header-notice">
|
|
<a-badge count="12">
|
|
<a-icon :class="['header-notice-icon']" type="bell" />
|
|
</a-badge>
|
|
</span>
|
|
</a-dropdown>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'HeaderNotice',
|
|
data () {
|
|
return {
|
|
loading: false,
|
|
show: false
|
|
}
|
|
},
|
|
computed: {
|
|
},
|
|
methods: {
|
|
fetchNotice () {
|
|
if (this.loading) {
|
|
this.loading = false
|
|
return
|
|
}
|
|
this.loadding = true
|
|
setTimeout(() => {
|
|
this.loadding = false
|
|
}, 1000)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.header-notice{
|
|
display: inline-block;
|
|
transition: all 0.3s;
|
|
span {
|
|
vertical-align: initial;
|
|
}
|
|
.header-notice-icon{
|
|
font-size: 16px;
|
|
padding: 4px;
|
|
}
|
|
}
|
|
.dropdown-tabs{
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
border-radius: 4px;
|
|
.tab-pane{
|
|
padding: 0 24px 12px;
|
|
min-height: 250px;
|
|
}
|
|
}
|
|
</style>
|