mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
46 lines
1.3 KiB
Vue
46 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
interface Props {
|
|
list?: Message.List[]
|
|
}
|
|
const props = defineProps<Props>()
|
|
|
|
const emit = defineEmits<Emits>()
|
|
interface Emits {
|
|
(e: 'read', val: number): void
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<n-scrollbar style="height: 400px">
|
|
<n-list hoverable clickable>
|
|
<n-list-item v-for="(item) in props.list" :key="item.id" @click="emit('read', item.id)">
|
|
<n-thing content-indented :class="{ 'opacity-30': item.isRead }">
|
|
<template #header>
|
|
<n-ellipsis :line-clamp="1">
|
|
{{ item.title }}
|
|
</n-ellipsis>
|
|
</template>
|
|
<template #avatar>
|
|
<nova-icon :icon="item.icon" :size="30" class="c-primary" />
|
|
</template>
|
|
<template v-if="item.tagTitle" #header-extra>
|
|
<n-tag :bordered="false" :type="item.tagType" size="small">
|
|
{{ item.tagTitle }}
|
|
</n-tag>
|
|
</template>
|
|
<template v-if="item.description" #description>
|
|
<n-ellipsis :line-clamp="2">
|
|
{{ item.description }}
|
|
</n-ellipsis>
|
|
</template>
|
|
<template #footer>
|
|
{{ item.date }}
|
|
</template>
|
|
</n-thing>
|
|
</n-list-item>
|
|
</n-list>
|
|
</n-scrollbar>
|
|
</template>
|
|
|
|
<style scoped></style>
|