|
@@ -2,6 +2,9 @@
|
2
|
2
|
<div v-if="showSelf" class="dialog">
|
3
|
3
|
<CalendarPoster :show="showPopupCalendarPoster" @cancelPopus="canckle" :stater="stater" />
|
4
|
4
|
|
|
5
|
+ <!-- 我的奖品 -->
|
|
6
|
+ <MyWinning :show="MyWinningShow" @cancel="()=>this.MyWinningShow=false" />
|
|
7
|
+
|
5
|
8
|
<div class="dialog-mark" @click.self="closeMyself">
|
6
|
9
|
<div v-show="myShareShow" class="sharetiptxt" style>
|
7
|
10
|
<img style="width:100%; height:100%;" src="../assets/popupImg/myShare.png" alt />
|
|
@@ -32,7 +35,7 @@
|
32
|
35
|
</div>
|
33
|
36
|
<!-- 右侧 -->
|
34
|
37
|
<div class="section-box">
|
35
|
|
- <div class="section-box-share" @click="()=>{this.myShareShow=true}">
|
|
38
|
+ <div class="section-box-share" @click="()=>{this.MyWinningShow=true}">
|
36
|
39
|
<img src="../assets/popupImg/shareImage.png" alt />
|
37
|
40
|
</div>
|
38
|
41
|
<div
|
|
@@ -58,7 +61,8 @@
|
58
|
61
|
export default {
|
59
|
62
|
name: 'Popup',
|
60
|
63
|
components: {
|
61
|
|
- CalendarPoster: () => import('@/components/CalendarPoster.vue')
|
|
64
|
+ CalendarPoster: () => import('@/components/CalendarPoster.vue'),
|
|
65
|
+ MyWinning: () => import('@/components/MyWinning.vue')
|
62
|
66
|
},
|
63
|
67
|
props: {
|
64
|
68
|
show: {
|
|
@@ -83,7 +87,8 @@ export default {
|
83
|
87
|
classDivAA: false,
|
84
|
88
|
myShareShow: false,
|
85
|
89
|
showPopupCalendarPoster: false,
|
86
|
|
- stater: null
|
|
90
|
+ stater: null,
|
|
91
|
+ MyWinningShow: false
|
87
|
92
|
}
|
88
|
93
|
},
|
89
|
94
|
watch: {
|