随机分享文字

This commit is contained in:
Dallas Lu 2020-11-21 17:52:14 +08:00 committed by GitHub
parent 89391fcf48
commit 910fb187f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -137,10 +137,14 @@ export default {
this.changeTab(this.current)
},
onShareAppMessage(res) {
return {
title: '美团饿了么大额红包,每日可领',
var messages = [{
title: '美团饿了么大额红包,每日可领',
path: '/pages/index/index'
}
},{
title: '吃了这么多年外卖,你知道这个秘密吗?',
path: '/pages/index/index'
}];
return messages[Math.floor(Math.random()*messages.length)];
},
methods: {
changeTab(index) {