|
@@ -171,7 +171,7 @@ export default {
|
171
|
171
|
list: shuffle(monthList),
|
172
|
172
|
currentMonth: null,
|
173
|
173
|
showPopup: false,
|
174
|
|
- showMyWinning: false,
|
|
174
|
+ showMyWinning: true,
|
175
|
175
|
prizeList: [],
|
176
|
176
|
bingoId: rand(0, 12) + 1, // 可以抽奖的月份
|
177
|
177
|
NOMyWinningShow: true,
|
|
@@ -209,7 +209,10 @@ export default {
|
209
|
209
|
// 1、正常情况下, 分享主题是 抽取幸运签,解锁隐藏福利
|
210
|
210
|
// 2、中奖弹出情况下, 分享主题是 我中奖啦! 来试试你的运气吧
|
211
|
211
|
if (newValue && !oldValue) {
|
212
|
|
- share({ title: '我中奖啦! 来试试你的运气吧', desc: '抽取幸运签,解锁隐藏福利' })
|
|
212
|
+ share({
|
|
213
|
+ title: '我中奖啦! 来试试你的运气吧',
|
|
214
|
+ desc: '抽取幸运签,解锁隐藏福利'
|
|
215
|
+ })
|
213
|
216
|
} else if (newValue !== oldValue) {
|
214
|
217
|
share({ title: '抽取幸运签,解锁隐藏福利', desc: '每月都有欢乐发生' })
|
215
|
218
|
}
|