From b6fbdb2b2631dcf9a4e0b2eb96fa4f7060613546 Mon Sep 17 00:00:00 2001 From: wangqiao Date: Fri, 29 Aug 2025 21:28:07 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E6=B8=85=E7=A9=BA?= =?UTF-8?q?=E6=9C=AA=E8=AF=BB=E4=BF=A1=E6=81=AFAPI=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E4=BC=A0=E9=80=92=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/channel/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/channel/index.ts b/api/channel/index.ts index 71acf83..02c15c3 100644 --- a/api/channel/index.ts +++ b/api/channel/index.ts @@ -114,7 +114,7 @@ export const getChatDetail = (params: { sessionId: number; pageNo: number; pageS * 清空未读信息 */ export const clearUnreadMessage = (params: { id: number }) => { - return useDollarFetchRequest.put>('/prod-api/app-api/mqtt/session/clear', params) + return useDollarFetchRequest.put>('/prod-api/app-api/mqtt/session/clear?id=' + params.id, params) } /**