/**
* 用户点击右上角分享
*/
onShareAppMessage: function (ops) {
if (ops.from === 'button') {
// 来自页面内转发按钮
console.log(ops.target)
}
return {
title: 'Hi~我会人工智能把文字转成语音,厉害吧,你也快来试试~',
path: 'pages/voice/voice',
imageUrl: this.imageUrl + 'images/mini-program-douyin-share-voice.png',
success: function (res) {
uni.showToast({
title: '谢谢您的转发,请收下我的膝盖',
icon: 'none',
duration: 1500
})
},
fail: function (res) {
uni.showToast({
title: '我这么棒,您怎么舍得不让我露脸呢',
icon: 'none',
duration: 1500
})
}
}
},