@@ -103,7 +142,9 @@ const currUserUid = useKUNGalgameUserStore().uid
/>
-
+
diff --git a/src/views/topic/components/reply/Reply.vue b/src/views/topic/components/reply/Reply.vue
index 2588cfc0..12c052a2 100644
--- a/src/views/topic/components/reply/Reply.vue
+++ b/src/views/topic/components/reply/Reply.vue
@@ -41,6 +41,7 @@ const { tid, rid, toUid, toUsername, isShowCommentPanelRid } = storeToRefs(
const props = defineProps<{
repliesData: TopicReply[]
+ title: string
}>()
// 响应式 props 的值,因为子组件还要用
@@ -104,7 +105,7 @@ const handleClickComment = (
- 回复给 @
+ {{ `${$tm('topic.panel.to')} @` }}
{{ reply.to_user.name }}
@@ -136,7 +137,7 @@ const handleClickComment = (
upvotes: reply.upvotes,
}"
:content="{
- title: '',
+ title: props.title,
content: reply.content,
tags: reply.tags,
category: [],
@@ -321,5 +322,10 @@ const handleClickComment = (
.article {
flex-direction: column;
}
+ .top {
+ margin: 0;
+ padding-bottom: 10px;
+ border-bottom: 1px solid var(--kungalgame-blue-1);
+ }
}