fix: sidebar mobile responsive and footer link clickability

This commit is contained in:
zetaloop
2026-02-20 20:36:27 +08:00
parent ebdf56a361
commit ed3858cff3
10 changed files with 86 additions and 86 deletions
+1 -11
View File
@@ -14,20 +14,10 @@ import { Badge } from "@/components/ui/badge"
import { Button } from "@/components/ui/button"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import { Separator } from "@/components/ui/separator"
import { statusLabels } from "@/lib/constants"
import { mockChatSessions, mockOrders, mockReviews } from "@/lib/mock-data"
import type { OrderStatus } from "@/lib/types"
const statusLabels: Record<OrderStatus, string> = {
pending_payment: "待支付",
pending_accept: "待接单",
in_progress: "进行中",
pending_close: "待结单",
pending_review: "待评价",
disputed: "争议中",
completed: "已完成",
cancelled: "已取消",
}
const statusSteps: OrderStatus[] = [
"pending_payment",
"pending_accept",