feat: 添加通知详情页面及通知列表点击跳转功能;优化分隔线样式

This commit is contained in:
2025-12-30 20:14:26 +07:00
parent 72e7c77003
commit cde6cd9bb5
6 changed files with 109 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ defineProps<{ text?: string }>();
<template>
<div class="divider ion-margin-vertical" v-bind="$attrs">
<span>{{ text }}</span>
<span v-if="text">{{ text }}</span>
</div>
</template>
@@ -20,7 +20,7 @@ defineProps<{ text?: string }>();
.divider::after {
content: "";
flex: 1;
border-bottom: 1px solid var(--ion-color-medium);
border-bottom: 1px solid var(--ion-text-color-step-900);
}
.divider span {