"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 (
{/* 顶部标题 */}

优惠券

{/* Tab切换栏 */}
{tabs.map((tab) => ( ))}
{/* 空状态展示 */}

暂无优惠券

); }