12345678910111213141516171819202122 |
- export default {
- data() {
- return {
- share:{
- title: '方便快捷的粮食流通行业ERP平台,给你大智慧。',
- imageUrl:'https://taohaoliang.oss-cn-beijing.aliyuncs.com/shareLogo.png',
- }
- }
- },
- onShareAppMessage(res) { //发送给朋友
- return {
- title: this.share.title,
- imageUrl: this.share.imageUrl,
- }
- },
- onShareTimeline(res) {//分享到朋友圈
- return {
- title: this.share.title,
- imageUrl: this.share.imageUrl,
- }
- },
- }
|