| 12345678910111213141516171819202122232425262728293031323334 |
- export default{
- data(){
- return {
- //设置默认的分享参数
- share:{
- title:'商城',
- path:'/pages/index/index',
- imageUrl:'',
- desc:'',
- content:''
- }
- }
- },
- 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'
- })
- }
- }
- }
- }
|