|
|
@ -1,7 +1,7 @@ |
|
|
|
<template> |
|
|
|
<template> |
|
|
|
<a-dropdown :trigger="['click']"> |
|
|
|
<a-dropdown :trigger="['click']"> |
|
|
|
<template slot="overlay"> |
|
|
|
<div slot="overlay"> |
|
|
|
<a-spin :spinning="loadding"> |
|
|
|
<a-spin :spinning="loading"> |
|
|
|
<a-tabs :tabBarStyle="{textAlign: 'center'}" :style="{backgroundColor: 'white', width: '297px'}"> |
|
|
|
<a-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" :style="{padding: '0 24px'}"> |
|
|
|
<a-list> |
|
|
|
<a-list> |
|
|
@ -30,7 +30,7 @@ |
|
|
|
</a-tab-pane> |
|
|
|
</a-tab-pane> |
|
|
|
</a-tabs> |
|
|
|
</a-tabs> |
|
|
|
</a-spin> |
|
|
|
</a-spin> |
|
|
|
</template> |
|
|
|
</div> |
|
|
|
<span @click="fetchNotice" class="header-notice"> |
|
|
|
<span @click="fetchNotice" class="header-notice"> |
|
|
|
<a-badge count="12"> |
|
|
|
<a-badge count="12"> |
|
|
|
<a-icon :class="['header-notice-icon', theme]" type="bell" /> |
|
|
|
<a-icon :class="['header-notice-icon', theme]" type="bell" /> |
|
|
@ -40,34 +40,36 @@ |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
<script> |
|
|
|
|
|
|
|
import {mapState} from 'vuex' |
|
|
|
export default { |
|
|
|
export default { |
|
|
|
name: 'HeaderNotice', |
|
|
|
name: 'HeaderNotice', |
|
|
|
data () { |
|
|
|
data () { |
|
|
|
return { |
|
|
|
return { |
|
|
|
loadding: false |
|
|
|
loading: false |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
computed: { |
|
|
|
computed: { |
|
|
|
theme () { |
|
|
|
...mapState('setting', ['layout', 'theme']), |
|
|
|
return this.$store.state.setting.layout === 'side' ? 'light' : this.$store.state.setting.theme |
|
|
|
theme() { |
|
|
|
} |
|
|
|
return this.layout == 'side' ? 'light' : this.theme |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
fetchNotice () { |
|
|
|
fetchNotice () { |
|
|
|
if (this.loadding) { |
|
|
|
if (this.loading) { |
|
|
|
this.loadding = false |
|
|
|
this.loading = false |
|
|
|
return |
|
|
|
return |
|
|
|
} |
|
|
|
} |
|
|
|
this.loadding = true |
|
|
|
this.loadding = true |
|
|
|
setTimeout(() => { |
|
|
|
setTimeout(() => { |
|
|
|
this.loadding = false |
|
|
|
this.loadding = false |
|
|
|
}, 2000) |
|
|
|
}, 1000) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<style lang="less"> |
|
|
|
<style lang="less" scoped> |
|
|
|
.header-notice{ |
|
|
|
.header-notice{ |
|
|
|
display: inline-block; |
|
|
|
display: inline-block; |
|
|
|
transition: all 0.3s; |
|
|
|
transition: all 0.3s; |
|
|
|