This commit is contained in:
张成
2025-11-14 23:14:18 +08:00
parent 0adab95d34
commit 1226350099
24 changed files with 95 additions and 386 deletions

View File

@@ -1,6 +1,6 @@
import { useState, useEffect } from "react";
import { View, Text, ScrollView, Image, Input } from "@tarojs/components";
import { withAuth, EmptyState, BackNavbar } from "@/components";
import { withAuth, EmptyState, GeneralNavbar } from "@/components";
import commentService, { CommentActivity } from "@/services/commentService";
import { formatShortRelativeTime } from "@/utils/timeUtils";
import Taro from "@tarojs/taro";
@@ -284,9 +284,9 @@ const CommentReply = () => {
return (
<View className="comment-reply-container">
{/* 顶部导航栏 */}
<BackNavbar
title="收到的评论和回复"
showBackButton={true}
<GeneralNavbar
title="收到的评论和回复"
showBack={true}
showAvatar={false}
onBack={handleBack}
/>