"use client" import { useState } from "react" import { ChevronLeft, Edit2, RefreshCw } from "lucide-react" import { Button } from "@/components/ui/button" import { Card } from "@/components/ui/card" import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table" interface MomentContent { id: string type: string content: string images: string[] publishTime: string pushTime: string status: "已发送" | "待发送" | "已终止" } const mockData: MomentContent[] = [ { id: "399401", type: "图文", content: "一定要把安全意识这件事情,刻在DNA里......", images: [ "https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-Z8LxL98X5Bwm5Jr5ke3755Qd97PSYC.png", "https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-Z8LxL98X5Bwm5Jr5ke3755Qd97PSYC.png", "https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-Z8LxL98X5Bwm5Jr5ke3755Qd97PSYC.png", ], publishTime: "2025-02-15 23:37:49", pushTime: "2025-02-16 08:50:36", status: "已发送", }, ] export default function MomentsSyncViewPage() { const [syncName] = useState("同步卡若主号") return (

{syncName}

基本信息

朋友圈同步名称: {syncName}

推送日志

ID 内容类型 内容 图片 推送时间 内容发布时间 状态 {mockData.map((item) => ( {item.id} {item.type} {item.content}
{item.images.map((img, index) => ( {`Content ))}
{item.pushTime} {item.publishTime} {item.status}
))}
) }