fix: 分享调整

This commit is contained in:
huxuejian 2026-05-28 16:41:53 +08:00
parent cd9d88f882
commit d05513e8f6
2 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ onShareAppMessage((res) => {
const customer = customers.value[0]; const customer = customers.value[0];
const referenceCustomerId = customer ? customer._id : ''; const referenceCustomerId = customer ? customer._id : '';
return { return {
title: team.value.name, title: `${team.value.name}】这个团队不错,推荐给你!`,
type: shareAppVersion || 0, // 0 | 1 | 2 type: shareAppVersion || 0, // 0 | 1 | 2
path: `/pages/login/redirect-page?teamId=${team.value.teamId}&corpId=${team.value.corpId}&type=archive&referenceCustomerId=${referenceCustomerId}` path: `/pages/login/redirect-page?teamId=${team.value.teamId}&corpId=${team.value.corpId}&type=archive&referenceCustomerId=${referenceCustomerId}`
} }

View File

@ -135,7 +135,7 @@ onShareAppMessage((res) => {
if (team.value && team.value.supportPatientForward === 'YES') { if (team.value && team.value.supportPatientForward === 'YES') {
const referenceCustomerId = firstCustomerId.value || ''; const referenceCustomerId = firstCustomerId.value || '';
return { return {
title: team.value.name, title: `${team.value.name}】这个团队不错,推荐给你!`,
type: shareAppVersion || 0, // 0 | 1 | 2 type: shareAppVersion || 0, // 0 | 1 | 2
path: `/pages/login/redirect-page?teamId=${team.value.teamId}&corpId=${team.value.corpId}&type=archive&referenceCustomerId=${referenceCustomerId}` path: `/pages/login/redirect-page?teamId=${team.value.teamId}&corpId=${team.value.corpId}&type=archive&referenceCustomerId=${referenceCustomerId}`
} }