| 1234567891011121314151617181920212223242526272829303132333435363738 |
- // 创建全局mixin
- export default {
- onLoad() {
- // 开启分享功能
- uni.showShareMenu({
- withShareTicket: true,
- menus: ['shareAppMessage', 'shareTimeline']
- })
- },
-
- onShareAppMessage() {
- return {
- title: this.shareTitle || '云飞智控',
- path: this.sharePath || '/pages/index/index',
- imageUrl: this.shareImage || ''
- }
- },
-
- // 朋友圈
- onShareTimeline() {
- return {
- title: this.timelineTitle || '云飞智控',
- query: this.timelineQuery || '',
- imageUrl: this.timelineImage || ''
- }
- },
-
- data() {
- return {
- shareTitle: '',
- sharePath: '',
- shareImage: '',
- timelineTitle: '',
- timelineQuery: '',
- timelineImage: ''
- }
- }
- }
|