123456789101112131415161718192021222324252627282930313233343536 |
- export default {
- data() {
- return {
- //设置默认的分享参数
- share: {
- title: 'USKY快速开发平台',
- path: '/pages/index/index',
- 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
- }
|