From 01b703e689990e4c5b61a29efe17394330fb5228 Mon Sep 17 00:00:00 2001 From: huxuejian Date: Wed, 11 Feb 2026 18:05:41 +0800 Subject: [PATCH 1/2] Update edit-archive.vue --- pages/archive/edit-archive.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pages/archive/edit-archive.vue b/pages/archive/edit-archive.vue index 77cf59d..59b10c2 100644 --- a/pages/archive/edit-archive.vue +++ b/pages/archive/edit-archive.vue @@ -134,6 +134,7 @@ async function addArchive() { mobile: account.value.mobile, miniAppId: account.value.openid, externalUserId: externalUserId.value, + realUnionid: account.value.unionid || '', } loading.value = false; const res = await api('addCustomer', { params }); @@ -154,7 +155,7 @@ async function bindArchive(customerId) { await toast('绑定成功'); set('home-invite-teamId', teamId.value); uni.switchTab({ - url:'/pages/home/home' + url: '/pages/home/home' }) // uni.reLaunch({ url: `/pages/home/home?corpId=${corpId.value}&teamId=${teamId.value}` }) } else { From 932ec63261d20bca7b811367d7aa1ab2abcee391 Mon Sep 17 00:00:00 2001 From: huxuejian Date: Thu, 12 Feb 2026 10:45:53 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/article/article-cate-list.vue | 2 +- pages/home/home.vue | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/pages/article/article-cate-list.vue b/pages/article/article-cate-list.vue index 2f42808..ba03acc 100644 --- a/pages/article/article-cate-list.vue +++ b/pages/article/article-cate-list.vue @@ -254,7 +254,7 @@ const selectCate = async (cateId) => { function goToDetail(item) { if (!item?._id) return; - uni.navigateTo({ url: `/pages/article/article-detail?id=${item._id}` }); + uni.navigateTo({ url: `/pages/article/article-detail?id=${item._id}&corpId=${corpId.value}` }); } onLoad(async (options) => { diff --git a/pages/home/home.vue b/pages/home/home.vue index a4fa04d..1c9e301 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -20,7 +20,7 @@