Files
liangjian 836c61ac55 @@@@@@
2026-01-27 16:32:15 +08:00

134 lines
3.1 KiB
Vue

<template>
<el-badge type="danger" :value="badge">
<el-popover placement="bottom" trigger="hover" :width="305">
<template #reference>
<vab-icon icon="notification-2-line" />
</template>
<el-tabs v-model="activeName" @tab-click="handleClick">
<el-tab-pane :label="translate('通知')" name="notice">
<div class="notice-list">
<el-scrollbar>
<ul v-if="badge">
<li v-for="(item, index) in notices" :key="index">
<el-avatar :size="45" :src="item.image" />
<span v-html="item.notice"></span>
</li>
</ul>
<el-empty v-else description="暂无数据" />
</el-scrollbar>
</div>
</el-tab-pane>
<el-tab-pane :label="translate('邮件')" name="email">
<div class="notice-list">
<el-scrollbar>
<ul v-if="badge">
<li v-for="(item, index) in notices" :key="index">
<el-avatar :size="45" :src="item.image" />
<span>{{ item.email }}</span>
</li>
</ul>
<el-empty v-else description="暂无数据" />
</el-scrollbar>
</div>
</el-tab-pane>
</el-tabs>
<div class="notice-clear" @click="handleClearNotice">
<el-button text>
<vab-icon icon="close-circle-line" />
<span>{{ translate('清空消息') }}</span>
</el-button>
</div>
</el-popover>
</el-badge>
</template>
<script setup>
import { translate } from '/@/i18n'
import { useSettingsStore } from '/@/store/modules/settings'
defineOptions({
name: 'VabNotice',
})
const settingsStore = useSettingsStore()
const { theme } = storeToRefs(settingsStore)
const activeName = ref('notice')
const notices = ref([])
const badge = ref(undefined)
const fetchData = async () => {
// const { data } = await getList()
// data.list
notices.value = []
// badge.value = data.total === 0 ? undefined : data.total
badge.value = 0
}
const handleClick = () => {
fetchData()
}
const handleClearNotice = () => {
badge.value = ''
notices.value = []
$baseMessage('清空消息成功', 'success', 'hey')
}
onBeforeMount(() => {
if (theme.value.showNotice) fetchData()
})
</script>
<style lang="scss" scoped>
:deep() {
.el-tabs__active-bar {
min-width: 28px;
}
}
.notice-list {
height: 315px;
ul {
padding: 0 15px 0 0;
margin: 0;
li {
display: flex;
align-items: center;
padding: 10px 0 15px 0;
&:hover {
background-color: var(--el-color-primary-light-9);
border-radius: var(--el-border-radius-base);
}
:deep() {
.el-avatar {
flex-shrink: 0;
width: 50px;
height: 50px;
border-radius: 50%;
}
}
span {
margin-left: 10px;
}
}
}
}
.notice-clear {
display: flex;
align-items: center;
justify-content: center;
padding: 10px 0 0 0;
font-size: var(--el-font-size-base);
text-align: center;
cursor: pointer;
border-top: 1px solid var(--el-border-color);
}
</style>