|
@@ -162,8 +162,8 @@ export default {
|
162
|
162
|
Popup: () => import('@/components/Popup.vue'),
|
163
|
163
|
WinningPopup: () => import('@/components/WinningPopup.vue'),
|
164
|
164
|
ImgBox: () => import('@/components/imgbox.vue'),
|
165
|
|
- BgMusic: () => import('@/components/BgMusic.vue'),
|
166
|
|
- MyWinning: () => import('@/components/MyWinning.vue')
|
|
165
|
+ BgMusic: () => import('@/components/BgMusic.vue')
|
|
166
|
+ // MyWinning: () => import('@/components/MyWinning.vue')
|
167
|
167
|
},
|
168
|
168
|
data() {
|
169
|
169
|
return {
|
|
@@ -211,6 +211,11 @@ export default {
|
211
|
211
|
},
|
212
|
212
|
canclMyWinning() {
|
213
|
213
|
this.showMyWinning = false
|
|
214
|
+ this.list.map((item) => {
|
|
215
|
+ if (item.id == this.currentMonth.id) {
|
|
216
|
+ item.mode = 3
|
|
217
|
+ }
|
|
218
|
+ })
|
214
|
219
|
},
|
215
|
220
|
handleMonthClick(month) {
|
216
|
221
|
this.list.map((item) => {
|
|
@@ -248,6 +253,7 @@ export default {
|
248
|
253
|
// 更新人员信息
|
249
|
254
|
this.person = res
|
250
|
255
|
this.showMyWinning = true
|
|
256
|
+ console.log('showMyWinning-----------')
|
251
|
257
|
|
252
|
258
|
// 其他动作
|
253
|
259
|
})
|