share.js 599 Bytes
export default {
	data() {
		return {
			//设置默认的分享参数
			share: {
				title: '一丰大药房',
				path: '/pages/index/apply',
				imageUrl: '',
				desc: '',
				content: ''
			}
		}
	},
	//#ifdef MP-WEIXIN
	onShareAppMessage(res) {
		return {
			title: this.share.title,
			path: this.share.path,
			imageUrl: this.share.imageUrl,
			desc: this.share.desc,
			content: this.share.content,
			success(res) {
				uni.showToast({
					title: '分享成功'
				})
			},
			fail(res) {
				uni.showToast({
					title: '分享失败',
					icon: 'none'
				})
			}
		}
	}
	//#endif
}