|
@@ -172,7 +172,7 @@ export default {
|
172
|
172
|
list: shuffle(monthList),
|
173
|
173
|
currentMonth: null,
|
174
|
174
|
showPopup: false,
|
175
|
|
- showMyWinning: true,
|
|
175
|
+ showMyWinning: false,
|
176
|
176
|
prizeList: [],
|
177
|
177
|
bingoId: rand(0, 12) + 1, // 可以抽奖的月份
|
178
|
178
|
NOMyWinningShow: true,
|
|
@@ -207,7 +207,7 @@ export default {
|
207
|
207
|
},
|
208
|
208
|
created() {
|
209
|
209
|
this.getPrizes()
|
210
|
|
-
|
|
210
|
+ this.noShowMy()
|
211
|
211
|
// 设置微信分享
|
212
|
212
|
share({ title: '抽取幸运签,解锁隐藏福利', desc: '每月都有欢乐发生' })
|
213
|
213
|
},
|
|
@@ -227,6 +227,13 @@ export default {
|
227
|
227
|
}
|
228
|
228
|
},
|
229
|
229
|
methods: {
|
|
230
|
+ noShowMy() {
|
|
231
|
+ if (this.noPrize) {
|
|
232
|
+ console.log('asdsadsadsad')
|
|
233
|
+ } else {
|
|
234
|
+ console.log('222222222222')
|
|
235
|
+ }
|
|
236
|
+ },
|
230
|
237
|
//关闭
|
231
|
238
|
cancelFrom() {
|
232
|
239
|
this.showPopup = false
|