"use client"; import { useState } from "react"; import { useRouter, usePathname } from "next/navigation"; export default function Coupon() { const router = useRouter(); const pathname = usePathname(); const [activeTab, setActiveTab] = useState("unused"); const tabs = [ { id: "unused", name: "未使用" }, { id: "used", name: "已使用" }, { id: "expired", name: "已过期" }, ]; const handleTabChange = (tabId) => { setActiveTab(tabId); router.replace(`/coupon?tab=${tabId}`); }; const handleGoShopping = () => { router.push("/tab"); }; return (
暂无优惠券