From d5ffc80ea55398d2d72c37d81600c2f30c790941 Mon Sep 17 00:00:00 2001 From: cherishsince Date: Fri, 17 May 2024 15:35:13 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=A2=9E=E5=8A=A0=E3=80=91Ai=20?= =?UTF-8?q?=E8=A7=92=E8=89=B2=E6=90=9C=E7=B4=A2=EF=BC=8C=E9=87=8D=E7=BD=AE?= =?UTF-8?q?=E5=88=86=E9=A1=B5=EF=BC=8C=E4=B8=8D=E7=84=B6=E4=BC=9A=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=E4=B8=8D=E5=88=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ai/chat/role/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/ai/chat/role/index.vue b/src/views/ai/chat/role/index.vue index 2970740c..7b583177 100644 --- a/src/views/ai/chat/role/index.vue +++ b/src/views/ai/chat/role/index.vue @@ -133,8 +133,10 @@ const getPublicRole = async (append?: boolean) => { // 获取选中的 tabs 角色 const getActiveTabsRole = async () => { if (activeRole.value === 'my-role') { + myPageNo.value = 1 await getMyRole() } else { + publicPageNo.value = 1 await getPublicRole() } }