From 91fdcf3c1daa1968e8098b45b8538167094df543 Mon Sep 17 00:00:00 2001 From: "Mr.jiang" <714156421@qq.com> Date: Fri, 26 Jul 2024 16:26:36 +0800 Subject: [PATCH] =?UTF-8?q?=E8=81=8A=E5=A4=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/my/index.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pages/my/index.vue b/pages/my/index.vue index c8fc9f3..bfa1323 100644 --- a/pages/my/index.vue +++ b/pages/my/index.vue @@ -260,14 +260,15 @@ this.$Request.postJson('/app/chat/insertChatConversation', data).then(res => { if (res.data) { let id = this.ordersId == res.data.userId ? res.data.focusedUserId : this.ordersId - uni.navigateTo({ - url: '/pages/msg/im' - }); + var list={ chatConversationId:res.data.chatConversationId, byUserId:res.data.userId } uni.setStorageSync('wbescokt',list) + uni.navigateTo({ + url: '/pages/msg/im' + }); } }) },