|
|
@@ -34,7 +34,7 @@ const shareOptions = ref([{ name: "微信", icon: "wechat", type: "wechat" }]);
|
|
|
const handleShareSelect = () => {
|
|
|
const query = {
|
|
|
askInfo: { title: "提醒客户", content: "是否分享该提醒给好友" },
|
|
|
- shareText: shareParams.value.questTitle,
|
|
|
+ shareText: shareParams.value.title,
|
|
|
targetUrl: `warning_detail`,
|
|
|
paramsPage: JSON.stringify(shareParams.value),
|
|
|
imageUrl: shareParams.value.imageUrl,
|
|
|
@@ -48,6 +48,7 @@ const shareParams = ref({});
|
|
|
const handleShare = (data) => {
|
|
|
shareParams.value = {
|
|
|
id: data.postInfo.postId,
|
|
|
+ title: data.postInfo.title,
|
|
|
questTitle: data.interactionQuestion,
|
|
|
arrangeId: data.arrangeId,
|
|
|
farmId: route.query.farmId,
|