From d3876556d40222f005b154b3531e87efc22edd8b Mon Sep 17 00:00:00 2001
From: al <al@cdhncy.com>
Date: Mon, 10 Mar 2025 17:31:59 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=A9=BA=E9=97=B4=E7=A9=BA?=
 =?UTF-8?q?=E7=8A=B6=E6=80=81?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 components/InfiniteScrollContent/index.jsx | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/components/InfiniteScrollContent/index.jsx b/components/InfiniteScrollContent/index.jsx
index f859989..179ea64 100644
--- a/components/InfiniteScrollContent/index.jsx
+++ b/components/InfiniteScrollContent/index.jsx
@@ -1,11 +1,15 @@
+"use client";
+
 import React from "react";
 import { DotLoading } from "antd-mobile";
 import Empty from "@/components/Empty";
+import { useRouter } from "next/navigation";
 export default function InfiniteScrollContent({
-  hasMore=0,
+  hasMore = 0,
   isEmpty,
   showNoMore = true,
 }) {
+  const router = useRouter();
   return (
     <>
       {hasMore ? (
@@ -21,6 +25,20 @@ export default function InfiniteScrollContent({
           // style={{ height: `${scrollHeight}px` }}
         >
           <Empty type="nodata" />
+          <div className="text-white">
+            <p
+              onClick={() => router.push("/search")}
+              className="text-base font-medium flex items-center justify-center bg-[#FFFFFF1A] mt-2 rounded-full w-[190px] h-[46px]"
+            >
+              搜索空间
+            </p>
+            <p
+              onClick={() => router.push("/found")}
+              className="text-base font-medium flex items-center justify-center bg-[#FFFFFF1A] mt-2 rounded-full w-[190px] h-[46px]"
+            >
+              查看推荐
+            </p>
+          </div>
         </div>
       )}
     </>