From 3dc7204f8c1b0badcc5b414b874b0b4673459dfe Mon Sep 17 00:00:00 2001 From: al Date: Fri, 27 Dec 2024 18:38:46 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E5=81=B6=E5=8F=91=E6=8A=A5?= =?UTF-8?q?=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/my/refund/refundList/components/PendingReview/index.jsx | 2 +- app/noticeDetail/components/MessageList/index.jsx | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app/my/refund/refundList/components/PendingReview/index.jsx b/app/my/refund/refundList/components/PendingReview/index.jsx index 14fcc28..375b276 100644 --- a/app/my/refund/refundList/components/PendingReview/index.jsx +++ b/app/my/refund/refundList/components/PendingReview/index.jsx @@ -23,7 +23,7 @@ export default function Reviewed({ currentIndex }) { const account = get("account"); try { const body = { - b_mid: account.mid, + b_mid: account?.mid, audit_type: 1, offset: offset, limit: 10, diff --git a/app/noticeDetail/components/MessageList/index.jsx b/app/noticeDetail/components/MessageList/index.jsx index c89137c..c77c229 100644 --- a/app/noticeDetail/components/MessageList/index.jsx +++ b/app/noticeDetail/components/MessageList/index.jsx @@ -53,6 +53,7 @@ const MessageList = ({ mid, changeNoticeCount, refInstance, noticeCount }) => { ]); useImperativeHandle(refInstance, () => ({ readAllMsg: async (types) => { + if (!data.session_id) return; try { const body = { n_types: types, @@ -68,6 +69,7 @@ const MessageList = ({ mid, changeNoticeCount, refInstance, noticeCount }) => { }); return; } + const _data2 = await requireAPI( "POST", "/api/contact_customer_service/read_all", @@ -83,6 +85,7 @@ const MessageList = ({ mid, changeNoticeCount, refInstance, noticeCount }) => { }); return; } + changeNoticeCount(0); } catch (error) { console.error(error);