uniapp开发小程序---文章转发分享问题

一、需求

标题这里有三个新闻分类(跳转的列表页是同一个,是根据分类字段来判断显示的):
在列表页面点击右上角分享给好友后是下图所示:

要求点击每个分享过来的页面时,跳转到对应的新闻列表下。

二、代码

重点:分享的时候在路径后加上cate

html 复制代码
<template>
	<view class="home_content">
		列表内容
	</view>
</template>

<script>
	import share from '../../static/public/share.js'
	export default {
		mixins: [share],
		data() {
			return {
				cate: 3, //1:研究报告 2:政策研究 3:今日新闻
				
				// 自定义转发时的名称
				ShareType: true,
				shareTitle: '政策研究',
			}
		},
	
	
		onLoad(option) {
			this.cate = Number(option.cate)

			// 修改顶部标题
			if (this.cate == 1) {
				uni.setNavigationBarTitle({
					title: '研究报告'
				})
				this.shareTitle =  '研究报告'
			} else if (this.cate == 2) {
				uni.setNavigationBarTitle({
					title: '政策研究'
				})
				this.shareTitle =  '政策研究'
			} else if (this.cate == 3) {
				uni.setNavigationBarTitle({
					title: '今日新闻'
				})
				this.shareTitle =  '今日新闻'
			}
		},
		
		
		//分享好友
		onShareAppMessage(res) {
			return {
				title: this.shareTitle,
				path: '/pages/businessSchool/solution?cate=' + this.cate //分享的页面路径
			}
		},
		// 自定义页面的分享到朋友圈
		onShareTimeline(res) {
			return {
				title: this.shareTitle,
				path: '/pages/businessSchool/solution?cate=' + this.cate //分享的页面路径
			}
		},
	}
</script>

完成

相关推荐
MoonMoonLee3 天前
小程序配置
小程序
码兄科技3 天前
24小时自助健身房系统软件开发实战指南:功能设计与部署方案
java·spring boot·uni-app
2501_916007473 天前
苹果商店iOS应用上架费用全面解析:开发者计划与审核费用计算
android·ios·小程序·https·uni-app·iphone·webview
JQweryuiop3 天前
中小型游戏陪练工作室数字化管理实践:基于七彩屋电竞护航小程序订单、履约与绩效系统的落地复盘
大数据·游戏·小程序·架构
Ai-_Man3 天前
您您这可以把Mistral AI的多个会话比如说。左侧的多个会话一次性导出吗?不是单条会话里面的多次会对话。
人工智能·ai·小程序·电脑
2501_916008893 天前
如何实现iOS App代码混淆:SwiftShield使用指南
android·ios·小程序·https·uni-app·iphone·webview
微擎应用市场3 天前
简单拼车小程序系统:实现出行与物流资源的高效精准匹配
小程序
2501_916008893 天前
怎么用 Godot 导出 iOS 应用并上架 App Store?签名字段该填什么?
android·ios·小程序·https·uni-app·iphone·webview
2601_963870203 天前
基于springboot的综合网上购物商场系统
微信小程序·小程序·课程设计
2601_963869953 天前
力序健身房管理系统
微信小程序·小程序