12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import config from '../config.js';
- export default {
- data() {
- return {
- share: {}
- }
- },
- onShareAppMessage(res) { //发送给朋友
- const that = this;
- return {
- title: that.$config.share.title,
- path: that.$config.share.path,
- imageUrl: that.$config.share.imageUrl,
- success(res) {
- uni.showToast({
- title: '分享成功'
- })
- },
- fail(res) {
- uni.showToast({
- title: '分享失败',
- icon: 'none'
- })
- }
- }
- },
- onShareTimeline(res) { //分享到朋友圈
- const that = this;
- return {
- title: that.$config.share.title,
- path: that.$config.share.path,
- imageUrl: that.$config.share.imageUrl,
- success(res) {
- uni.showToast({
- title: '分享成功'
- })
- },
- fail(res) {
- uni.showToast({
- title: '分享失败',
- icon: 'none'
- })
- }
- }
- },
- }
|