From 615c7cb718739566f5315c49e154ab7fd1073128 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=88=90?= Date: Sat, 8 Nov 2025 13:12:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BB=8E=E5=85=B3=E6=B3=A8?= =?UTF-8?q?=E6=9D=A1=E8=BD=AC=E4=BB=96=E4=BA=BA=E9=A1=B5=E9=9D=A2=E4=B8=8D?= =?UTF-8?q?=E5=AF=B9=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/other_pages/comment_reply/index.tsx | 2 +- src/other_pages/new_follow/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/other_pages/comment_reply/index.tsx b/src/other_pages/comment_reply/index.tsx index a24ed93..211e49f 100644 --- a/src/other_pages/comment_reply/index.tsx +++ b/src/other_pages/comment_reply/index.tsx @@ -100,7 +100,7 @@ const CommentReply = () => { const handleUserClick = (e: any, userId: number) => { e.stopPropagation(); // 阻止事件冒泡 Taro.navigateTo({ - url: `/user_pages/other/index?user_id=${userId}`, + url: `/user_pages/other/index?userid=${userId}`, }); }; diff --git a/src/other_pages/new_follow/index.tsx b/src/other_pages/new_follow/index.tsx index c48f94f..b83da87 100644 --- a/src/other_pages/new_follow/index.tsx +++ b/src/other_pages/new_follow/index.tsx @@ -122,7 +122,7 @@ const NewFollow = () => { // 处理点击用户 const handleUserClick = (userId: number) => { Taro.navigateTo({ - url: `/user_pages/other/index?user_id=${userId}`, + url: `/user_pages/other/index?userid=${userId}`, }); };